2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: HTTPRequest.response
|
|
|
|
---
|
|
|
|
|
|
|
|
# HTTPRequest.response() method
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class HTTPRequest {
|
|
|
|
response(): HTTPResponse | null;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
[HTTPResponse](./puppeteer.httpresponse.md) \| null
|
|
|
|
|
|
|
|
A matching `HTTPResponse` object, or null if the response has not been received yet.
|