puppeteer/website/versioned_docs/version-19.6.0/api/puppeteer.mouse.drag.md

27 lines
566 B
Markdown
Raw Normal View History

---
sidebar_label: Mouse.drag
---
# Mouse.drag() method
Dispatches a `drag` event.
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class Mouse {
drag(start: Point, target: Point): Promise<Protocol.Input.DragData>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ----------------------------- | ----------------------- |
| start | [Point](./puppeteer.point.md) | starting point for drag |
| target | [Point](./puppeteer.point.md) | point to drag to |
**Returns:**
Promise&lt;Protocol.Input.DragData&gt;