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](./puppeteer.elementhandle.md)<Element>
element [ElementHandle](./puppeteer.elementhandle.md)<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](./puppeteer.elementhandle.md)<Element>
data Protocol.Input.DragData _(Optional)_

Returns:

Promise<void>