MCPcopy Index your code
hub / github.com/microsoft/playwright-python / _navigation_timeout

Method _navigation_timeout

playwright/_impl/_frame.py:334–338  ·  view source on GitHub ↗
(self, timeout: Optional[float])

Source from the content-addressed store, hash-verified

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))

Callers

nothing calls this directly

Calls 2

TimeoutSettingsClass · 0.90
navigation_timeoutMethod · 0.80

Tested by

no test coverage detected