2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: HTTPRequest.respond
|
|
|
|
---
|
|
|
|
|
|
|
|
# HTTPRequest.respond() method
|
|
|
|
|
|
|
|
Fulfills a request with the given response.
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class HTTPRequest {
|
2024-04-02 11:20:36 +00:00
|
|
|
respond(
|
2022-07-05 13:41:43 +00:00
|
|
|
response: Partial<ResponseForRequest>,
|
|
|
|
priority?: number
|
|
|
|
): Promise<void>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
response
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
Partial<[ResponseForRequest](./puppeteer.responseforrequest.md)>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
the response to fulfill the request with.
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
|
|
|
|
priority
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
number
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
_(Optional)_ If provided, intercept is resolved using cooperative handling rules. Otherwise, intercept is resolved immediately.
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-07-05 13:41:43 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
To use this, request interception should be enabled with [Page.setRequestInterception()](./puppeteer.page.setrequestinterception.md).
|
|
|
|
|
|
|
|
Exception is immediately thrown if the request interception is not enabled.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
An example of fulfilling all requests with 404 responses:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
await page.setRequestInterception(true);
|
|
|
|
page.on('request', request => {
|
|
|
|
request.respond({
|
|
|
|
status: 404,
|
|
|
|
contentType: 'text/plain',
|
|
|
|
body: 'Not Found!',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
NOTE: Mocking responses for dataURL requests is not supported. Calling `request.respond` for a dataURL request is a noop.
|