class Playwright::Page

def set_extra_http_headers(headers)

**NOTE**: [`method: Page.setExtraHTTPHeaders`] does not guarantee the order of headers in the outgoing requests.

The extra HTTP headers will be sent with every request the page initiates.
def set_extra_http_headers(headers)
  wrap_impl(@impl.set_extra_http_headers(unwrap_impl(headers)))
end