Guest User

Untitled

a guest
Jul 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // Dragging one element to another.
  2. await browser.actions().mouseDown(source).perform();
  3. await browser.sleep(PageHelper.timeout.xs);
  4. await browser.actions()
  5. .mouseMove(destination, { x: 0, y: -25 })
  6. .mouseMove(destination, { x: 0, y: -15 })
  7. .mouseMove(destination, { x: 0, y: -5 }).perform();
  8. await browser.sleep(PageHelper.timeout.xs);
  9. await browser.actions().mouseUp().perform();
  10. await browser.sleep(PageHelper.timeout.xs);
Add Comment
Please, Sign In to add comment