puppeteer/docs/api/puppeteer.httprequest.abort.md
dependabot[bot] 93e9acc410
chore(deps-dev): Bump the dev-dependencies group with 3 updates (#12101)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
2024-03-20 15:03:14 +00:00

939 B

sidebar_label
HTTPRequest.abort

HTTPRequest.abort() method

Aborts a request.

Signature:

class HTTPRequest {
  abstract abort(errorCode?: ErrorCode, priority?: number): Promise<void>;
}

Parameters

Parameter

Type

Description

errorCode

ErrorCode

(Optional) optional error code to provide.

priority

number

(Optional) If provided, intercept is resolved using cooperative handling rules. Otherwise, intercept is resolved immediately.

**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.