puppeteer/new-docs/puppeteer.httprequest.continue.md
Jack Franklin f7857d27c4
chore(docs): document HTTPRequest with TSDoc (#6146)
* chore(docs): document HTTPRequest with TSDoc

* doclint

* example
2020-07-03 14:28:45 +01:00

1.2 KiB

Home > puppeteer > HTTPRequest > continue

HTTPRequest.continue() method

Continues request with optional request overrides.

Signature:

continue(overrides?: ContinueRequestOverrides): Promise<void>;

Parameters

Parameter Type Description
overrides ContinueRequestOverrides optional overrides to apply to the request.

Returns:

Promise<void>

Remarks

To use this, request interception should be enabled with Page.setRequestInterception().

Exception is immediately thrown if the request interception is not enabled.

Example

await page.setRequestInterception(true);
page.on('request', request => {
  // Override headers
  const headers = Object.assign({}, request.headers(), {
    foo: 'bar', // set "foo" header
    origin: undefined, // remove "origin" header
  });
  request.continue({headers});
});