Module

x/puppeteer/mod.ts>HTTPResponse

A port of puppeteer running on Deno
Latest
class HTTPResponse
import { HTTPResponse } from "https://dotland.deno.dev/x/puppeteer@16.2.0/mod.ts";

The HTTPResponse class represents responses which are received by the {@link 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
remoteAddress(): RemoteAddress
request(): HTTPRequest
securityDetails(): SecurityDetails | null
status(): number
statusText(): string
text(): Promise<string>
timing(): Protocol.Network.ResourceTiming | null
url(): string
import HTTPResponse
import { HTTPResponse } from "https://dotland.deno.dev/x/puppeteer@16.2.0/mod.ts";