(self, timeout: Optional[float])
| 332 | return timeout_settings.timeout(timeout) |
| 333 | |
| 334 | def _navigation_timeout(self, timeout: Optional[float]) -> float: |
| 335 | timeout_settings = ( |
| 336 | self._page._timeout_settings if self._page else TimeoutSettings(None) |
| 337 | ) |
| 338 | return timeout_settings.navigation_timeout(timeout) |
| 339 | |
| 340 | async def frame_element(self) -> ElementHandle: |
| 341 | return from_channel(await self._channel.send("frameElement", None)) |
nothing calls this directly
no test coverage detected