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

Method header_values

playwright/_impl/_network.py:870–871  ·  view source on GitHub ↗
(self, name: str)

Source from the content-addressed store, hash-verified

868 return (await self._actual_headers()).get(name)
869
870 async def header_values(self, name: str) -> List[str]:
871 return (await self._actual_headers()).get_all(name)
872
873 async def _actual_headers(self) -> "RawHeaders":
874 if not self._raw_headers_future:

Calls 2

_actual_headersMethod · 0.95
get_allMethod · 0.80