← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #676169]: Continuously monitoring parent while loop

 

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

    Status: Open => Answered

Jitendra patel proposed the following answer:
I think you want something like

while exists(image4) and not exists(image5):
    if exists(image6):
        click()
    else:
        ....


or maybe

while exists(image4) and exists(Image6):
    if exists(image5):
        break
    else:
        click(image6)

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.