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

Function test_fill_textarea

tests/async/test_fill.py:19–22  ·  view source on GitHub ↗
(page: Page, server: Server)

Source from the content-addressed store, hash-verified

17
18
19async def test_fill_textarea(page: Page, server: Server) -> None:
20 await page.goto(f"{server.PREFIX}/input/textarea.html")
21 await page.fill("textarea", "some value")
22 assert await page.evaluate("result") == "some value"
23
24
25async def test_is_enabled_for_non_editable_button(page: Page) -> None:

Callers

nothing calls this directly

Calls 3

gotoMethod · 0.45
fillMethod · 0.45
evaluateMethod · 0.45

Tested by

no test coverage detected