puppeteer/new-docs/puppeteer.httprequest.abort.md
Jack Franklin f7857d27c4
chore(docs): document HTTPRequest with TSDoc (#6146)
* chore(docs): document HTTPRequest with TSDoc

* doclint

* example
2020-07-03 14:28:45 +01:00

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.