Skip to main content
Go to Latest
interface default.Fetch.ContinueRequestRequest
import { type default } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.js";
const { ContinueRequestRequest } = default.Fetch;

Properties

requestId: RequestId

An id the client received in requestPaused event.

optional
url: string

If set, the request url will be modified in a way that's not observable by page.

optional
method: string

If set, the request method is overridden.

optional
postData: string

If set, overrides the post data in the request. (Encoded as a base64 string when passed over JSON)

optional
headers: HeaderEntry[]

If set, overrides the request headers.

optional
interceptResponse: boolean

If set, overrides response interception behavior for this request.