2022-07-05 13:41:43 +00:00
---
sidebar_label: HTTPRequest.abort
---
# HTTPRequest.abort() method
Aborts a request.
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class HTTPRequest {
2024-04-02 11:20:36 +00:00
abort(errorCode?: ErrorCode, priority?: number): Promise< void > ;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
2024-03-20 15:03:14 +00:00
< table > < thead > < tr > < th >
2022-07-05 13:41:43 +00:00
2024-03-20 15:03:14 +00:00
Parameter
< / th > < th >
Type
< / th > < th >
Description
< / th > < / tr > < / thead >
< tbody > < tr > < td >
errorCode
< / td > < td >
[ErrorCode ](./puppeteer.errorcode.md )
< / td > < td >
_(Optional)_ optional error code to provide.
< / 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 >
2022-07-05 13:41:43 +00:00
**Returns:**
Promise< void>
## Remarks
To use this, request interception should be enabled with [Page.setRequestInterception() ](./puppeteer.page.setrequestinterception.md ). If it is not enabled, this method will throw an exception immediately.