class: Response
Response class represents responses which are received by page.
- response.body()
- response.finished()
- response.frame()
- response.headers()
- response.json()
- response.ok()
- response.request()
- response.status()
- response.statusText()
- response.text()
- response.url()
response.body()
response.finished()
- returns: <Promise<?Error>> Waits for this response to finish, returns failure error if request failed.
response.frame()
response.headers()
- returns: <Object> An object with HTTP headers associated with the response. All header names are lower-case.
response.json()
This method will throw if the response body is not parsable via JSON.parse
.
response.ok()
- returns: <boolean>
Contains a boolean stating whether the response was successful (status in the range 200-299) or not.
response.request()
response.status()
- returns: <number>
Contains the status code of the response (e.g., 200 for a success).
response.statusText()
- returns: <string>
Contains the status text of the response (e.g. usually an “OK” for a success).
response.text()
response.url()
- returns: <string>
Contains the URL of the response.