puppeteer/website/versioned_docs/version-18.0.4/api/puppeteer.elementhandle.drag.md
release-please[bot] 37417b1dce
chore(main): release 18.0.4 (#8994)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2022-09-21 10:41:32 +02:00

30 lines
729 B
Markdown

---
sidebar_label: ElementHandle.drag
---
# ElementHandle.drag() method
This method creates and captures a dragevent from the element.
**Signature:**
```typescript
class ElementHandle {
drag(
this: ElementHandle<Element>,
target: Point
): Promise<Protocol.Input.DragData>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ------------------------------------------------------------ | ----------- |
| this | [ElementHandle](./puppeteer.elementhandle.md)&lt;Element&gt; | |
| target | [Point](./puppeteer.point.md) | |
**Returns:**
Promise&lt;Protocol.Input.DragData&gt;