(page, server)
| 563 | |
| 564 | @pytest.mark.asyncio |
| 565 | async def test_text_content(page, server): |
| 566 | await page.goto(server.PREFIX + "/dom.html") |
| 567 | handle = await page.query_selector("#inner") |
| 568 | assert await handle.text_content() == "Text,\nmore text" |
| 569 | assert await page.text_content("#inner") == "Text,\nmore text" |
| 570 | |
| 571 | |
| 572 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected