Last active
March 14, 2016 10:26
-
-
Save RobK/cf84b756270908d794c3 to your computer and use it in GitHub Desktop.
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
"Drag and drop test (useCss)" : function (browser) { | |
browser | |
.useCss() | |
.moveToElement('#draggable', 0, 0) | |
.mouseButtonDown(0) | |
.moveToElement('body', 200, 600) // Move to offset position of 200(x) 600(y) | |
.mouseButtonUp(0) | |
.pause(5000) // Keep browser open for 5 seconds so you can see result | |
.end(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you can also use :-
.execute('scrollTo(0,3000)')