puppeteer/website/versioned_docs/version-22.6.0/api/puppeteer.mouse.dragenter.md

30 lines
682 B
Markdown
Raw Normal View History

---
sidebar_label: Mouse.dragEnter
---
# Mouse.dragEnter() method
Dispatches a `dragenter` event.
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class Mouse {
abstract dragEnter(
target: Point,
data: Protocol.Input.DragData
): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ----------------------------- | ----------------------------------------------- |
| target | [Point](./puppeteer.point.md) | point for emitting <code>dragenter</code> event |
| data | Protocol.Input.DragData | drag data containing items and operations mask |
**Returns:**
Promise&lt;void&gt;