2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: ElementHandle.drop
|
|
|
|
---
|
|
|
|
|
|
|
|
# ElementHandle.drop() method
|
|
|
|
|
2023-09-14 09:14:30 +00:00
|
|
|
Drops the given element onto the current one.
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ElementHandle {
|
2022-07-06 07:05:37 +00:00
|
|
|
drop(
|
|
|
|
this: ElementHandle<Element>,
|
2023-09-14 09:14:30 +00:00
|
|
|
element: ElementHandle<Element>
|
2022-07-06 07:05:37 +00:00
|
|
|
): Promise<void>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
this
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[ElementHandle](./puppeteer.elementhandle.md)<Element>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
|
|
|
|
element
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[ElementHandle](./puppeteer.elementhandle.md)<Element>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-07-05 13:41:43 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|