mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
2.5 KiB
2.5 KiB
Home > puppeteer > Protocol > Network > ContinueInterceptedRequestRequest
Protocol.Network.ContinueInterceptedRequestRequest interface
Signature:
export interface ContinueInterceptedRequestRequest
Properties
Property | Type | Description |
---|---|---|
authChallengeResponse | AuthChallengeResponse | Response to a requestIntercepted with an authChallenge. Must not be set otherwise. |
errorReason | ErrorReason | If set this causes the request to fail with the given reason. Passing Aborted for requests marked with isNavigationRequest also cancels the navigation. Must not be set in response to an authChallenge. |
headers | Headers | If set this allows the request headers to be changed. Must not be set in response to an authChallenge. |
interceptionId | InterceptionId | |
method | string | If set this allows the request method to be overridden. Must not be set in response to an authChallenge. |
postData | string | If set this allows postData to be set. Must not be set in response to an authChallenge. |
rawResponse | 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 | 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. |