Skip to content

Instantly share code, notes, and snippets.

@RobK
Last active March 14, 2016 10:26
Show Gist options
  • Save RobK/cf84b756270908d794c3 to your computer and use it in GitHub Desktop.
Save RobK/cf84b756270908d794c3 to your computer and use it in GitHub Desktop.
"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();
}
@himanshuteotia
Copy link

you can also use :-
.execute('scrollTo(0,3000)')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment