2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.setDragInterception
---
# Page.setDragInterception() method
2023-09-14 09:14:30 +00:00
> Warning: This API is now obsolete.
>
2024-04-11 11:01:13 +00:00
> We no longer support intercepting drag payloads. Use the new drag APIs found on [ElementHandle](./puppeteer.elementhandle.md) to drag (or just use the [Page.mouse](./puppeteer.page.md#mouse)).
2023-09-14 09:14:30 +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 setDragInterception(enabled: 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 >
enabled
< / td > < td >
boolean
< / td > < td >
Whether to enable drag interception.
< / td > < / tr >
< / tbody > < / table >
2022-07-05 13:41:43 +00:00
**Returns:**
Promise< void>