Is there a way to stop executing the next steps of a macro if a condition in a loop was reached?

Hi,

I am trying to stop my macro execution if a certain condition is met on my IF loop, because if that condition is met , there is no point in running the next steps. Any idea how I could do that? ThrowError can work but is not exactly what I want , I just want it to jump to the next macro from my test suite. I appreciate any help, thank you!

What about using GotoIf_v2 and put the label at the end of the macro so it basically finishes that macro and goes to the next in your test suite?

https://ui.vision/rpa/docs/selenium-ide/gotoif

Thanks for the Reply! It does work like that