2 Condition for repeatIf

is it possible to do repeatIf with 2 conditions?
example : repeatIF (a>0 || b>0)

Yes. Ui.vision uses Javascript syntax, so you can have as many conditions as you need, for example

RepeatIf |  ((${Type} == 2 && ${PageCount} == 0) || (${Type} == 2 && ${PageCount} == '')) {
1 Like