ElementHandle.drop() method
drop(): Promise<void>
Drops the given element onto the current one.
Signature
class ElementHandle {
drop(
this: ElementHandle<Element>,
element: ElementHandle<Element>,
): Promise<void>;
}
Parameters
Parameter | Type | Description |
---|---|---|
this | ElementHandle<Element> | |
element | ElementHandle<Element> |
Returns:
Promise<void>
drop(): Promise<void>
Warning: This API is now obsolete.
No longer supported.
Signature
class ElementHandle {
drop(
this: ElementHandle<Element>,
data?: Protocol.Input.DragData,
): Promise<void>;
}
Parameters
Parameter | Type | Description |
---|---|---|
this | ElementHandle<Element> | |
data | Protocol.Input.DragData | (Optional) |
Returns:
Promise<void>