puppeteer/website/versioned_docs/version-19.5.0/api/puppeteer.httpresponse.json.md
2023-01-09 10:58:41 +01:00

346 B

sidebar_label
HTTPResponse.json

HTTPResponse.json() method

Signature:

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

Returns:

Promise<any>

Promise which resolves to a JSON representation of response body.

Remarks

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