Batch
Overview of batch functionalities including repeat, repeat interval, and refresh.
Repeat
If you want specific batch to repeat more than once you can provide repeat value.
Its also used within ElementFinder Xpath and value to be replaces with the value of batch repeat index. e.g. If Element Finder need to be iterated over number of rows in table for that xpath will be //table/tr[1]/td[1]/button
well this will only select the first row button and if you want to iterate the process for all button you can make use of batch repeat here like //table/tr[<batchRepeat>]/td[1]/button
like this and repeat number 3 will iterate first three rows of table like [1..3].
Examples
- positive numeric value
1
to999
Repeat Interval
If you want to control the time between each repeat you can provide repeat-interval as well.
Examples
1
1.5
0.5
2
1e4
(Random value between 1 to 4)- Leave it
blank
/empty
to start right away
Refresh
If you want your site to be refresh after all the Action are completed successfully you can do that by checking refresh box.