Question #179795 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/179795

RaiMan proposed the following answer:
Sorry, incomplete too, since I guess you want to stop, when you clicked
the image:

while True:
    if not exists("loadmorecomm-2.png",0):
        type(Key.PAGE_DOWN,0)
        wait(1) # to give time to the scroll down
        continue # loop again
    # here we come if image is found
    click("loadmorecomm-2.png",0)
    type(Key.HOME)
    break

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to