2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.setRequestInterception
---
# Page.setRequestInterception() method
2022-08-09 12:01:23 +00:00
Activating request interception enables [HTTPRequest.abort() ](./puppeteer.httprequest.abort.md ), [HTTPRequest.continue() ](./puppeteer.httprequest.continue.md ) and [HTTPRequest.respond() ](./puppeteer.httprequest.respond.md ) methods. This provides the capability to modify network requests that are made by a page.
Once request interception is enabled, every request will stall unless it's continued, responded or aborted; or completed using the browser cache.
2024-04-26 13:13:43 +00:00
See the [Request interception guide ](https://pptr.dev/guides/network-interception ) for more details.
2022-08-09 12:01:23 +00:00
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Page {
2023-11-09 12:57:33 +00:00
abstract setRequestInterception(value: boolean): 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 >
value
< / td > < td >
boolean
< / td > < td >
Whether to enable request interception.
< / td > < / tr >
< / tbody > < / table >
2022-07-05 13:41:43 +00:00
**Returns:**
Promise< void>
## Example
An example of a naïve request interceptor that aborts all image requests:
```ts
2022-12-09 12:57:39 +00:00
import puppeteer from 'puppeteer';
2022-07-05 13:41:43 +00:00
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.setRequestInterception(true);
page.on('request', interceptedRequest => {
if (
interceptedRequest.url().endsWith('.png') ||
interceptedRequest.url().endsWith('.jpg')
)
interceptedRequest.abort();
else interceptedRequest.continue();
});
await page.goto('https://example.com');
await browser.close();
})();
```