puppeteer/website/versioned_docs/version-17.1.3/api/puppeteer.httprequest.enqueueinterceptaction.md
release-please[bot] 9b120f6c7b
chore(main): release 17.1.3 (#8921)
* chore(main): release 17.1.3

* chore: generate versioned docs

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2022-09-08 13:16:39 +00:00

28 lines
736 B
Markdown

---
sidebar_label: HTTPRequest.enqueueInterceptAction
---
# HTTPRequest.enqueueInterceptAction() method
Adds an async request handler to the processing queue. Deferred handlers are not guaranteed to execute in any particular order, but they are guaranteed to resolve before the request interception is finalized.
**Signature:**
```typescript
class HTTPRequest {
enqueueInterceptAction(
pendingHandler: () => void | PromiseLike<unknown>
): void;
}
```
## Parameters
| Parameter | Type | Description |
| -------------- | ------------------------------------------- | ----------- |
| pendingHandler | () =&gt; void \| PromiseLike&lt;unknown&gt; | |
**Returns:**
void