Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/sinco/deps.ts>Protocol.Fetch.ContinueRequestRequest

Browser Automation and Testing Tool for Deno, written in full TypeScript
Latest
interface Protocol.Fetch.ContinueRequestRequest
import { type Protocol } from "https://deno.land/x/sinco@v4.1.0/deps.ts";
const { ContinueRequestRequest } = Protocol.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.