Skip to main content
Latest
class HTTPResponse
Re-export
import { HTTPResponse } from "https://deno.land/x/puppeteer@16.2.0/vendor/puppeteer-core/puppeteer/types.js";

The HTTPResponse class represents responses which are received by the Page class.

Constructors

new
HTTPResponse(
client: CDPSession,
request: HTTPRequest,
responsePayload: Protocol.Network.Response,
extraInfo: Protocol.Network.ResponseReceivedExtraInfoEvent | null,
)

Methods

_resolveBody(err: Error | null): void
arrayBuffer(): Promise<ArrayBuffer>
frame(): Frame | null
fromCache(): boolean
headers(): Record<string, string>
json(): Promise<any>
ok(): boolean
status(): number
statusText(): string
text(): Promise<string>
timing(): Protocol.Network.ResourceTiming | null
url(): string