Jquery – how to automate dragndrop using cypress plugin
not able to drag the first task in my list to 3 task cy.get('div[data-columns="columns"]') .find('div[data-columnContainer="columnContainer"]') .each(($column) => { if ($column.text().includes("Hamza Malik")) { cy.get('div[data-taskDraggable="taskDraggable"]:nth-child(1)').drag('div[data-taskDraggable="taskDraggable"]:nth-child(3)', { force: true }); } });