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

Method header_value

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

Source from the content-addressed store, hash-verified

865 return (await self._actual_headers()).headers_array()
866
867 async def header_value(self, name: str) -> Optional[str]:
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)

Callers

nothing calls this directly

Calls 2

_actual_headersMethod · 0.95
getMethod · 0.45

Tested by

no test coverage detected