Last active
December 24, 2015 13:59
-
-
Save zevnull/6808928 to your computer and use it in GitHub Desktop.
Selenium. Manual drag and drop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Selenium | |
// Manual Drag And Drop | |
Action dragAndDrop = new Actions(driver) | |
.clickAndHold(element1) | |
.moveToElement(element2) | |
.release() | |
.build(); | |
dragAndDrop.perform(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment