puppeteer/website/versioned_docs/version-22.8.1/api/puppeteer.mouse.drop.md
release-please[bot] 042d61030c
chore: release main (#12415)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2024-05-13 08:49:32 +00:00

62 lines
633 B
Markdown

---
sidebar_label: Mouse.drop
---
# Mouse.drop() method
Performs a dragenter, dragover, and drop in sequence.
#### Signature:
```typescript
class Mouse {
abstract drop(target: Point, data: Protocol.Input.DragData): Promise<void>;
}
```
## Parameters
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
target
</td><td>
[Point](./puppeteer.point.md)
</td><td>
point to drop on
</td></tr>
<tr><td>
data
</td><td>
Protocol.Input.DragData
</td><td>
drag data containing items and operations mask
</td></tr>
</tbody></table>
**Returns:**
Promise&lt;void&gt;