(self, timeout: float = None)
| 332 | return self._default_timeout |
| 333 | |
| 334 | def navigation_timeout(self, timeout: float = None) -> float: |
| 335 | if timeout is not None: |
| 336 | return timeout |
| 337 | if self._default_navigation_timeout is not None: |
| 338 | return self._default_navigation_timeout |
| 339 | if self._default_timeout is not None: |
| 340 | return self._default_timeout |
| 341 | if self._parent: |
| 342 | return self._parent.navigation_timeout() |
| 343 | return DEFAULT_PLAYWRIGHT_TIMEOUT_IN_MILLISECONDS |
| 344 | |
| 345 | |
| 346 | def serialize_error(ex: Exception, tb: Optional[TracebackType]) -> ErrorPayload: |
no outgoing calls
no test coverage detected