(self, timeout: Optional[float])
| 326 | await waiter.result() |
| 327 | |
| 328 | def _timeout(self, timeout: Optional[float]) -> float: |
| 329 | timeout_settings = ( |
| 330 | self._page._timeout_settings if self._page else TimeoutSettings(None) |
| 331 | ) |
| 332 | return timeout_settings.timeout(timeout) |
| 333 | |
| 334 | def _navigation_timeout(self, timeout: Optional[float]) -> float: |
| 335 | timeout_settings = ( |
no test coverage detected