import { type default } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.d.ts";
const { RequestPausedEvent } = default.Fetch;
Issued when the domain is enabled and the request URL matches the specified filter. The request is paused until the client responds with one of continueRequest, failRequest or fulfillRequest. The stage of the request can be determined by presence of responseErrorReason and responseStatusCode -- the request is at the response stage if either of these fields is present and in the request stage otherwise.
Properties
Each request the page makes will have a unique id.
The details of the request.
The id of the frame that initiated the request.
How the requested resource will be used.
Response error if intercepted at response stage.
Response code if intercepted at response stage.
Response headers if intercepted at the response stage.
If the intercepted request had a corresponding Network.requestWillBeSent event fired for it, then this networkId will be the same as the requestId present in the requestWillBeSent event.