(
self, selector: str, strict: bool = None, timeout: float = None
)
| 453 | return await self._main_frame.is_hidden(selector=selector, strict=strict) |
| 454 | |
| 455 | async def is_visible( |
| 456 | self, selector: str, strict: bool = None, timeout: float = None |
| 457 | ) -> bool: |
| 458 | # timeout is deprecated and does nothing |
| 459 | return await self._main_frame.is_visible(selector=selector, strict=strict) |
| 460 | |
| 461 | async def dispatch_event( |
| 462 | self, |
no outgoing calls