mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f7857d27c4
* chore(docs): document HTTPRequest with TSDoc * doclint * example
816 B
816 B
Home > puppeteer > HTTPRequest > abort
HTTPRequest.abort() method
Aborts a request.
Signature:
abort(errorCode?: ErrorCode): Promise<void>;
Parameters
Parameter | Type | Description |
---|---|---|
errorCode | ErrorCode | optional error code to provide. |
Returns:
Promise<void>
Remarks
To use this, request interception should be enabled with Page.setRequestInterception(). If it is not enabled, this method will throw an exception immediately.