Method
not_to_have_url
(
self,
urlOrRegExp: Union[Pattern[str], str],
timeout: float = None,
ignoreCase: bool = None,
)
Source from the content-addressed store, hash-verified
| 202 | ) |
| 203 | |
| 204 | async def not_to_have_url( |
| 205 | self, |
| 206 | urlOrRegExp: Union[Pattern[str], str], |
| 207 | timeout: float = None, |
| 208 | ignoreCase: bool = None, |
| 209 | ) -> None: |
| 210 | __tracebackhide__ = True |
| 211 | await self._not.to_have_url(urlOrRegExp, timeout, ignoreCase) |
| 212 | |
| 213 | async def to_match_aria_snapshot( |
| 214 | self, expected: str, timeout: float = None |