Files
puppeteer/docs/api/puppeteer.httpresponse.json.md
2023-03-30 11:54:00 +00:00

346 B

sidebar_label
sidebar_label
HTTPResponse.json

HTTPResponse.json() method

Promise which resolves to a JSON representation of response body.

Signature:

class HTTPResponse {
  json(): Promise<any>;
}

Returns:

Promise<any>

Remarks

This method will throw if the response body is not parsable via JSON.parse.