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

Method send

playwright/_impl/_connection.py:61–73  ·  view source on GitHub ↗
(
        self,
        method: str,
        timeout_calculator: TimeoutCalculator,
        params: Dict = None,
        is_internal: bool = False,
        title: str = None,
    )

Source from the content-addressed store, hash-verified

59 self.on("error", lambda exc: self._connection._on_event_listener_error(exc))
60
61 async def send(
62 self,
63 method: str,
64 timeout_calculator: TimeoutCalculator,
65 params: Dict = None,
66 is_internal: bool = False,
67 title: str = None,
68 ) -> Any:
69 return await self._connection.wrap_api_call(
70 lambda: self._inner_send(method, timeout_calculator, params, False),
71 is_internal,
72 title,
73 )
74
75 async def send_return_as_dict(
76 self,

Callers 15

disposeMethod · 0.45
registerMethod · 0.45
owner_frameMethod · 0.45
content_frameMethod · 0.45
get_attributeMethod · 0.45
text_contentMethod · 0.45
inner_textMethod · 0.45
inner_htmlMethod · 0.45
is_checkedMethod · 0.45
is_disabledMethod · 0.45
is_editableMethod · 0.45

Calls 2

_inner_sendMethod · 0.95
wrap_api_callMethod · 0.80

Tested by 15

test_memory_objectsFunction · 0.36
test_should_workFunction · 0.36
_ws_on_messageFunction · 0.36
_server_on_messageFunction · 0.36
_handle_wsFunction · 0.36