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

Method send_no_reply

playwright/_impl/_connection.py:89–107  ·  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

87 )
88
89 def send_no_reply(
90 self,
91 method: str,
92 timeout_calculator: TimeoutCalculator,
93 params: Dict = None,
94 is_internal: bool = False,
95 title: str = None,
96 ) -> None:
97 # No reply messages are used to e.g. __waitInfo__(after).
98 self._connection.wrap_api_call_sync(
99 lambda: self._connection._send_message_to_server(
100 self._object,
101 method,
102 _augment_params(params, timeout_calculator),
103 True,
104 ),
105 is_internal,
106 title,
107 )
108
109 async def _inner_send(
110 self,

Callers 9

set_test_id_attributeMethod · 0.80
request_stopMethod · 0.80
sendMethod · 0.80
_update_subscriptionMethod · 0.80
logMethod · 0.80

Calls 3

_augment_paramsFunction · 0.85
wrap_api_call_syncMethod · 0.80

Tested by

no test coverage detected