(page: Page, server: Server)
| 621 | |
| 622 | |
| 623 | async def test_set_content_should_work(page: Page, server: Server) -> None: |
| 624 | await page.set_content("<div>hello</div>") |
| 625 | result = await page.content() |
| 626 | assert result == expected_output |
| 627 | |
| 628 | |
| 629 | async def test_set_content_should_work_with_domcontentloaded( |
nothing calls this directly
no test coverage detected