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

Function test_fill_should_fill_input

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

Source from the content-addressed store, hash-verified

929
930
931async def test_fill_should_fill_input(page: Page, server: Server) -> None:
932 await page.goto(server.PREFIX + "/input/textarea.html")
933 await page.fill("input", "some value")
934 assert await page.evaluate("result") == "some value"
935
936
937async def test_fill_should_throw_on_unsupported_inputs(

Callers

nothing calls this directly

Calls 3

gotoMethod · 0.45
fillMethod · 0.45
evaluateMethod · 0.45

Tested by

no test coverage detected