Answers for "drag and drop dragula"

0

how to drag and drop

Actions action = new Actions(driver);
action.clickAndHold(driver.findElement(By.id("item")))
.moveToElement(driver.findElement(By.id("destination")))
.release().build().perform();
Posted by: Guest on May-28-2021
0

drag and drop html

function drag(ev) {
    ev.dataTransfer.setData("text", ev.target.id);
}
Posted by: Guest on June-09-2021

Browse Popular Code Answers by Language