Is it possible to click and drag an image with Sikuli until the image is no longer present?

639 Views Asked by At

So using the dragDrop feature of Sikuli I've managed to click and image and drag it to x,y coordinates.

If multiple of the same images are present in succession, is it possible to click an image and then drag the mouse vertically to a point where the image is no longer present?

2

There are 2 best solutions below

0
On

You could use:

while exists("image.png"):
     # do something with the image
0
On

Using this you can drag your images to the same point wherever they are located:

 x = find (Point picture)

 for y in findAll (image to drag):

        dragDrop (y,x)