(page: Page, server: Server)
| 526 | |
| 527 | |
| 528 | def test_text_content(page: Page, server: Server) -> None: |
| 529 | page.goto(f"{server.PREFIX}/dom.html") |
| 530 | handle = page.query_selector("#inner") |
| 531 | assert handle |
| 532 | assert handle.text_content() == "Text,\nmore text" |
| 533 | assert page.text_content("#inner") == "Text,\nmore text" |
| 534 | |
| 535 | |
| 536 | def test_check_the_box(page: Page) -> None: |
nothing calls this directly
no test coverage detected