#TIMES


The number of times to run the test case.The defaut value is 1 if #TIMES has not been set before main process.

1
2
3
4
5
// The test case will run 10 times.
#TIMES 10
process main{
}


#AUTOWAIT


The interval time between two statements,and the default value is 500ms.

1
2
3
4
5
// Change the autowait time to one second.
#AUTOWAIT 1000
process main{
}


#LIMIT


The upper limit time of every statement waiting for selector element showing up,and the default value is 5000ms.

1
2
3
4
5
// Change the limit time to 10 seconds.
#LIMIT 10000
process main{
}