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
| 62 | |
| 63 | class AssertionsBase: |
| 64 | def __init__( |
| 65 | self, |
| 66 | locator: Locator, |
| 67 | timeout: float = None, |
| 68 | is_not: bool = False, |
| 69 | message: Optional[str] = None, |
| 70 | is_soft: bool = False, |
| 71 | ) -> None: |
| 72 | self._actual_locator = locator |
| 73 | self._loop = locator._loop |
| 74 | self._dispatcher_fiber = locator._dispatcher_fiber |
| 75 | self._timeout = timeout |
| 76 | self._is_not = is_not |
| 77 | self._custom_message = message |
| 78 | self._is_soft = is_soft |
| 79 | |
| 80 | async def _call_expect( |
| 81 | self, expression: str, expect_options: FrameExpectOptions, title: Optional[str] |
Tested by
no test coverage detected