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-01-05 08:28:39 +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)).
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
| Parameter | Type | Description |
| --------- | ------- | ------------------------------------ |
| enabled | boolean | Whether to enable drag interception. |
**Returns:**
Promise< void>