Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 346 Bytes

puppeteer.httpresponse.json.md

File metadata and controls

23 lines (15 loc) · 346 Bytes
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.