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

Method sizes

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

Source from the content-addressed store, hash-verified

197 return cast(str, self._fallback_overrides.method or self._initializer["method"])
198
199 async def sizes(self) -> RequestSizes:
200 response = await self.response()
201 if not response:
202 raise Error("Unable to fetch sizes for failed request")
203 return await response._channel.send(
204 "sizes",
205 None,
206 )
207
208 @property
209 def post_data(self) -> Optional[str]:

Calls 3

responseMethod · 0.95
ErrorClass · 0.90
sendMethod · 0.45