As far as I understand it, the “In setting “if error happens in loop” → continue next loop” setting is for those cases when you want to have a macro run forever, no matter what happens. This is useful for example for stress testing websites.
Is there any command to stop loop if condition met in line 4 And will not go to next loop?
For more complicated workflows I would not use the LOOP button. Instead create macro internal loops with one of these flow control commands:
- While… end => Incrementing each loop - #3 by ulrich
- Do… RepeatIf
- Times…end
- ForEach…end