Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 693 Bytes

puppeteer.elementhandle.drop.md

File metadata and controls

29 lines (21 loc) · 693 Bytes
sidebar_label
ElementHandle.drop

ElementHandle.drop() method

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>