#TIMES
The number of times to run the test case.The defaut value is 1 if #TIMES has not been set before main process.
12345// The test case will run 10 times.#TIMES 10process main{}
#AUTOWAIT
The interval time between two statements,and the default value is 500ms.
12345// Change the autowait time to one second.#AUTOWAIT 1000process main{}
#LIMIT
The upper limit time of every statement waiting for selector element showing up,and the default value is 5000ms.
12345// Change the limit time to 10 seconds.#LIMIT 10000process main{}