(page: Page)
| 507 | |
| 508 | |
| 509 | async def test_should_wait_for_hidden(page: Page) -> None: |
| 510 | await page.set_content("<div><span>target</span></div>") |
| 511 | locator = page.locator("span") |
| 512 | task = locator.wait_for(state="hidden") |
| 513 | await page.eval_on_selector("div", "div => div.innerHTML = ''") |
| 514 | await task |
| 515 | |
| 516 | |
| 517 | async def test_should_combine_visible_with_other_selectors(page: Page) -> None: |
nothing calls this directly
no test coverage detected