mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
95d77c679c
Reverts puppeteer/puppeteer#9152
660 B
660 B
sidebar_label |
---|
Mouse.dragEnter |
Mouse.dragEnter() method
Dispatches a dragenter
event.
Signature:
class Mouse {
dragEnter(target: Point, data: Protocol.Input.DragData): Promise<void>;
}
Parameters
Parameter | Type | Description |
---|---|---|
target | Point | point for emitting dragenter event |
data | Protocol.Input.DragData | drag data containing items and operations mask |
Returns:
Promise<void>