repeat
A command to repeat a set commands until a condition is met.
Repeat N times
Repeats set of commands N times
Repeat-while
Repeat set of commands until a condition is satisfied.
A condition can also be a JavaScript expression:
To learn more about conditions, see the following section:
If you need to, you can specify both a count and a condition, for example repeating a set of commands whilst an element isn't visible, up to a maximum count of 10 times
Last updated
Was this helpful?