dragAndDrop

Drag an item to a destination element or position.

info

The functionality of this command highly depends on the way drag and drop is implemented in your app. If you experience issues please post your example in #4134.

Usage#
$(selector).dragAndDrop(target, { duration })
Parameters#
NameTypeDetails
targetElement, DragAndDropCoordinatedestination element or object with x and y properties
options
optional
DragAndDropOptionsdragAndDrop command options
options.duration
optional
Numberhow long the drag should take place
Example#
example.test.js
it('should demonstrate the dragAndDrop command', () => {
const elem = $('#someElem')
const target = $('#someTarget')
// drag and drop to other element
elem.dragAndDrop(target)
// drag and drop relative from current position
elem.dragAndDrop({ x: 100, y: 200 })
})