Skip to content

Latest commit

 

History

History
78 lines (49 loc) · 854 Bytes

puppeteer.elementhandle.draganddrop.md

File metadata and controls

78 lines (49 loc) · 854 Bytes
sidebar_label
ElementHandle.dragAndDrop

ElementHandle.dragAndDrop() method

Warning: This API is now obsolete.

Use ElementHandle.drop instead.

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>