How to achieve drag and drop in taiko browser automation tool?

474 Views Asked by At

Using taiko automation tool, we have completed a few level of automation testing for our application in browser.

To proceed further we need to achieve a drag and drop option, which is one of the necessary steps in our application.

Gone through taiko feature's and found option like hover, scroll up, scroll down, etc.

How to achieve drag and drop using taiko?

2

There are 2 best solutions below

0
On

Drag and Drop is not supported in Taiko at the moment. The team has plans to pick this up - https://github.com/getgauge/taiko/issues/104

0
On

You can use the dragAndDrop api.

For e.g.

dragAndDrop($("work"),into($('work done')))
dragAndDrop($("work"),{up:10,down:10,left:10,right:10})

source https://taiko-preview.gauge.org/#draganddrop