Back to Puppeteer

ResponseForRequest interface

docs/api/puppeteer.responseforrequest.md

19.2.21.0 KB
Original Source

ResponseForRequest interface

Required response data to fulfill a request with.

Signature

typescript
export interface ResponseForRequest

Properties

<table><thead><tr><th>

Property

</th><th>

Modifiers

</th><th>

Type

</th><th>

Description

</th><th>

Default

</th></tr></thead> <tbody><tr><td>

<span id="body">body</span>

</td><td> </td><td>

string | Uint8Array

</td><td> </td><td> </td></tr> <tr><td>

<span id="contenttype">contentType</span>

</td><td> </td><td>

string

</td><td> </td><td> </td></tr> <tr><td>

<span id="headers">headers</span>

</td><td> </td><td>

Record<string, string | string[] | unknown>

</td><td>

Optional response headers.

The record values will be converted to string following: Arrays' values will be mapped to String (Used when you need multiple headers with the same name). Non-arrays will be converted to String.

</td><td> </td></tr> <tr><td>

<span id="status">status</span>

</td><td> </td><td>

number

</td><td> </td><td> </td></tr> </tbody></table>