MCPcopy
hub / github.com/microsoft/playwright-python / is_visible

Method is_visible

playwright/_impl/_page.py:455–459  ·  view source on GitHub ↗
(
        self, selector: str, strict: bool = None, timeout: float = None
    )

Source from the content-addressed store, hash-verified

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,

Calls

no outgoing calls