Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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();
Source by interactjs.io #
 
PREVIOUS NEXT
Tagged: #drag #drop
ADD COMMENT
Topic
Name
4+9 =