How do execute multiple scripts serially?

Asked by shmily67

I've created three scripts, such as launch tool, create project, and delete project.
Now I want to execute the three scripts serially. The steps are:
step1: launch tool.
step2: create project.
step3: delete project.
How can I achieve it?

PS: a method that is copy all the code in the three scripts to one script is dropped. Because there maybe more scripts need to execute serially.

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
shmily67
Solved:
Last query:
Last reply:
Revision history for this message
RaiMan (raimund-hocke) said :
#1

a basic approach to build something like a Sikuli "library" is documented here:
https://answers.launchpad.net/sikuli/+question/102003

For me this works great in all cases were I want to reuse code, even together with pictures.

Revision history for this message
shmily67 (shmily67) said :
#2

I've got it. Thanks very much.