Method
__init__
(
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 | |
| 232 | class 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
Tested by
no test coverage detected