MCPcopy Index your code
hub / github.com/microsoft/playwright-python / __init__

Method __init__

playwright/_impl/_assertions.py:233–242  ·  view source on GitHub ↗
(
        self,
        locator: Locator,
        timeout: float = None,
        is_not: bool = False,
        message: Optional[str] = None,
        is_soft: bool = False,
    )

Source from the content-addressed store, hash-verified

231
232class LocatorAssertions(AssertionsBase):
233 def __init__(
234 self,
235 locator: Locator,
236 timeout: float = None,
237 is_not: bool = False,
238 message: Optional[str] = None,
239 is_soft: bool = False,
240 ) -> None:
241 super().__init__(locator, timeout, is_not, message, is_soft)
242 self._actual_locator = locator
243
244 async def _call_expect(
245 self, expression: str, expect_options: FrameExpectOptions, title: Optional[str]

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected