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

Method headers

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

Source from the content-addressed store, hash-verified

1047 return list(self._headers_map[name.lower()].keys())
1048
1049 def headers(self) -> Dict[str, str]:
1050 result = {}
1051 for name in self._headers_map.keys():
1052 result[name] = cast(str, self.get(name))
1053 return result
1054
1055 def headers_array(self) -> HeadersArray:
1056 return self._headers_array

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected