Answers for "fdribble drag and drop"

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