Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 898 Bytes

puppeteer.elementhandle.draganddrop.md

File metadata and controls

33 lines (25 loc) · 898 Bytes
sidebar_label
ElementHandle.dragAndDrop

ElementHandle.dragAndDrop() method

This method triggers a dragenter, dragover, and drop on the element.

Signature:

class ElementHandle {
  dragAndDrop(
    this: ElementHandle<Element>,
    target: ElementHandle<Node>,
    options?: {
      delay: number;
    }
  ): Promise<void>;
}

Parameters

Parameter Type Description
this ElementHandle<Element>
target ElementHandle<Node>
options { delay: number; } (Optional)

Returns:

Promise<void>