← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #189507]: Controlling multiple applications in series

 

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

    Status: Open => Answered

RaiMan proposed the following answer:
--- I do not know, how you organized your current stuff
Is A, B, C, D each one a separate .sikuli?

If yes, run each script one after the other from command line and they
will run in sequence.

If you want to bake it into a main script:

# main.sikuli
import A.sikuli # this runs the script
reload(A.sikuli) # to be able to rerun in IDE
import B.sikuli
reload(B.sikuli)
...

so B will not run before A as ended.
All .sikuli have to be in one directory together with main.sikuli.

Come back, if this is not what you are looking for.

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