puppeteer/new-docs/puppeteer.protocol.network.continueinterceptedrequestrequest.md
2020-07-13 14:01:35 +01:00

26 lines
2.5 KiB
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [Network](./puppeteer.protocol.network.md) &gt; [ContinueInterceptedRequestRequest](./puppeteer.protocol.network.continueinterceptedrequestrequest.md)
## Protocol.Network.ContinueInterceptedRequestRequest interface
<b>Signature:</b>
```typescript
export interface ContinueInterceptedRequestRequest
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [authChallengeResponse](./puppeteer.protocol.network.continueinterceptedrequestrequest.authchallengeresponse.md) | [AuthChallengeResponse](./puppeteer.protocol.network.authchallengeresponse.md) | Response to a requestIntercepted with an authChallenge. Must not be set otherwise. |
| [errorReason](./puppeteer.protocol.network.continueinterceptedrequestrequest.errorreason.md) | [ErrorReason](./puppeteer.protocol.network.errorreason.md) | If set this causes the request to fail with the given reason. Passing <code>Aborted</code> for requests marked with <code>isNavigationRequest</code> also cancels the navigation. Must not be set in response to an authChallenge. |
| [headers](./puppeteer.protocol.network.continueinterceptedrequestrequest.headers.md) | [Headers](./puppeteer.protocol.network.headers.md) | If set this allows the request headers to be changed. Must not be set in response to an authChallenge. |
| [interceptionId](./puppeteer.protocol.network.continueinterceptedrequestrequest.interceptionid.md) | [InterceptionId](./puppeteer.protocol.network.interceptionid.md) | |
| [method](./puppeteer.protocol.network.continueinterceptedrequestrequest.method.md) | string | If set this allows the request method to be overridden. Must not be set in response to an authChallenge. |
| [postData](./puppeteer.protocol.network.continueinterceptedrequestrequest.postdata.md) | string | If set this allows postData to be set. Must not be set in response to an authChallenge. |
| [rawResponse](./puppeteer.protocol.network.continueinterceptedrequestrequest.rawresponse.md) | string | If set the requests completes using with the provided base64 encoded raw response, including HTTP status line and headers etc... Must not be set in response to an authChallenge. |
| [url](./puppeteer.protocol.network.continueinterceptedrequestrequest.url.md) | string | If set the request url will be modified in a way that's not observable by page. Must not be set in response to an authChallenge. |