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

Method __init__

playwright/_impl/_network.py:339–345  ·  view source on GitHub ↗
(
        self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
    )

Source from the content-addressed store, hash-verified

337
338class Route(ChannelOwner):
339 def __init__(
340 self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
341 ) -> None:
342 super().__init__(parent, type, guid, initializer)
343 self._handling_future: Optional[asyncio.Future["bool"]] = None
344 self._context: "BrowserContext" = cast("BrowserContext", None)
345 self._did_throw = False
346
347 def _start_handling(self) -> "asyncio.Future[bool]":
348 self._handling_future = asyncio.Future()

Callers 4

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected