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

Method all_headers

playwright/sync_api/_generated.py:540–550  ·  view source on GitHub ↗

Response.all_headers An object with all the response HTTP headers associated with this response. Returns ------- Dict[str, str]

(self)

Source from the content-addressed store, hash-verified

538 return mapping.from_impl(self._impl_obj.frame)
539
540 def all_headers(self) -> typing.Dict[str, str]:
541 """Response.all_headers
542
543 An object with all the response HTTP headers associated with this response.
544
545 Returns
546 -------
547 Dict[str, str]
548 """
549
550 return mapping.from_maybe_impl(self._sync(self._impl_obj.all_headers()))
551
552 def headers_array(self) -> typing.List[NameValue]:
553 """Response.headers_array

Callers

nothing calls this directly

Calls 3

from_maybe_implMethod · 0.80
_syncMethod · 0.45
all_headersMethod · 0.45

Tested by

no test coverage detected