2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: ElementHandle.dragEnter
|
|
|
|
---
|
|
|
|
|
|
|
|
# ElementHandle.dragEnter() method
|
|
|
|
|
2023-09-19 13:03:19 +00:00
|
|
|
> Warning: This API is now obsolete.
|
|
|
|
>
|
|
|
|
> Do not use. `dragenter` will automatically be performed during dragging.
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ElementHandle {
|
|
|
|
dragEnter(
|
|
|
|
this: ElementHandle<Element>,
|
|
|
|
data?: Protocol.Input.DragData
|
|
|
|
): Promise<void>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2023-03-06 13:53:56 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------------------------------------------------------------ | ------------ |
|
|
|
|
| this | [ElementHandle](./puppeteer.elementhandle.md)<Element> | |
|
|
|
|
| data | Protocol.Input.DragData | _(Optional)_ |
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|