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

Method __init__

playwright/_impl/_connection.py:54–59  ·  view source on GitHub ↗
(self, connection: "Connection", object: "ChannelOwner")

Source from the content-addressed store, hash-verified

52
53class Channel(AsyncIOEventEmitter):
54 def __init__(self, connection: "Connection", object: "ChannelOwner") -> None:
55 super().__init__()
56 self._connection = connection
57 self._guid = object._guid
58 self._object = object
59 self.on("error", lambda exc: self._connection._on_event_listener_error(exc))
60
61 async def send(
62 self,

Callers 3

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls 2

onMethod · 0.45

Tested by

no test coverage detected