f7857d27c4
* chore(docs): document HTTPRequest with TSDoc * doclint * example
47 lines
1.2 KiB
Markdown
47 lines
1.2 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [HTTPRequest](./puppeteer.httprequest.md) > [continue](./puppeteer.httprequest.continue.md)
|
|
|
|
## HTTPRequest.continue() method
|
|
|
|
Continues request with optional request overrides.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
continue(overrides?: ContinueRequestOverrides): Promise<void>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| overrides | [ContinueRequestOverrides](./puppeteer.continuerequestoverrides.md) | optional overrides to apply to the request. |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<void>
|
|
|
|
## Remarks
|
|
|
|
To use this, request interception should be enabled with [Page.setRequestInterception()](./puppeteer.page.setrequestinterception.md)<!-- -->.
|
|
|
|
Exception is immediately thrown if the request interception is not enabled.
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
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});
|
|
});
|
|
|
|
```
|
|
|