e2d9858b38
* chore(main): release 17.0.0 * chore: generate versioned docs Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
20 lines
322 B
Markdown
20 lines
322 B
Markdown
---
|
|
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.
|