mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
49 lines
1.4 KiB
Markdown
49 lines
1.4 KiB
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [HTTPRequest](./puppeteer.httprequest.md) > [respond](./puppeteer.httprequest.respond.md)
|
||
|
|
||
|
## HTTPRequest.respond() method
|
||
|
|
||
|
Fulfills a request with the given response.
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
respond(response: Partial<ResponseForRequest>, priority?: number): Promise<void>;
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| response | Partial<[ResponseForRequest](./puppeteer.responseforrequest.md)> | the response to fulfill the request with. |
|
||
|
| priority | number | If provided, intercept is resolved using cooperative handling rules. Otherwise, intercept is resolved immediately. |
|
||
|
|
||
|
<b>Returns:</b>
|
||
|
|
||
|
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:
|
||
|
|
||
|
```js
|
||
|
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.
|
||
|
|