How to click and drag in RPA

Drag & Drop is a combination of

  • XMove | Image of item to grab, e. g. browser title bar | #down
  • XMove | Image of drop place |
  • XMove | Image of drop place | #up

Or define the drop location relative to the old place. Old place center (= last image found) is ${!imageX},${!imageY}:

  • XMove | Image of item to grab, e. g. title bar | #down
  • XNew = ${!imageX} + 100 <= in this example we move the icon by 100px
  • XMove | ${XNew},${!imageY} |
  • XMove | ${XNew},${!imageY} | #up

This video explains it:

1 Like