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

Method response

playwright/_impl/_network.py:239–245  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

237 return None
238
239 async def response(self) -> Optional["Response"]:
240 return from_nullable_channel(
241 await self._channel.send(
242 "response",
243 None,
244 )
245 )
246
247 @property
248 def existing_response(self) -> Optional["Response"]:

Calls 2

from_nullable_channelFunction · 0.90
sendMethod · 0.45