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

Method headers_array

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

Source from the content-addressed store, hash-verified

300 return (await self._actual_headers()).headers()
301
302 async def headers_array(self) -> HeadersArray:
303 return (await self._actual_headers()).headers_array()
304
305 async def header_value(self, name: str) -> Optional[str]:
306 return (await self._actual_headers()).get(name)

Callers 4

headers_arrayMethod · 0.45
_handleMethod · 0.45

Calls 1

_actual_headersMethod · 0.95