website/versioned_docs/version-24.40.0/api/puppeteer.httprequest.respond.md
Fulfills a request with the given response.
class HTTPRequest {
respond(
response: Partial<ResponseForRequest>,
priority?: number,
): Promise<void>;
}
Parameter
</th><th>Type
</th><th>Description
</th></tr></thead> <tbody><tr><td>response
</td><td>Partial<ResponseForRequest>
</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>Returns:
Promise<void>
To use this, request interception should be enabled with Page.setRequestInterception().
Exception is immediately thrown if the request interception is not enabled.
An example of fulfilling all requests with 404 responses:
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.