Answers for "beautiful drag and drop dropable before drag"

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

Browse Popular Code Answers by Language