MCPcopy Create free account
hub / github.com/microsoft/playwright-python / test_fill_should_fill_textarea

Function test_fill_should_fill_textarea

tests/async/test_page.py:925–928  ·  view source on GitHub ↗
(page: Page, server: Server)

Source from the content-addressed store, hash-verified

923
924
925async def test_fill_should_fill_textarea(page: Page, server: Server) -> None:
926 await page.goto(server.PREFIX + "/input/textarea.html")
927 await page.fill("textarea", "some value")
928 assert await page.evaluate("result") == "some value"
929
930
931async def test_fill_should_fill_input(page: Page, server: Server) -> None:

Callers

nothing calls this directly

Calls 3

gotoMethod · 0.45
fillMethod · 0.45
evaluateMethod · 0.45

Tested by

no test coverage detected