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

    Status: Open => Answered

Manfred Hampl proposed the following answer:
To repeat forever you can use a construct like this:

runScript(xxx)
while True:
     runScript(yyy)
     runScript(zzz)

If you want the script to terminate at a certain condition, you can
extend it with

runScript(xxx)
while True:
     runScript(yyy)
     runScript(zzz)
     if termination_condition_is_True:
         break

This is simple python, to be found in the manuals, e.g.
https://docs.python.org/

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

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to