(page: Page, server)
| 1064 | |
| 1065 | @pytest.mark.asyncio |
| 1066 | async def test_input_value(page: Page, server): |
| 1067 | await page.goto(server.PREFIX + "/input/textarea.html") |
| 1068 | |
| 1069 | await page.fill("input", "my-text-content") |
| 1070 | assert await page.input_value("input") == "my-text-content" |
| 1071 | |
| 1072 | await page.fill("input", "") |
| 1073 | assert await page.input_value("input") == "" |
| 1074 | |
| 1075 | |
| 1076 | @pytest.mark.asyncio |
nothing calls this directly
no outgoing calls
no test coverage detected