Gotoif only on error?

I want to set a couple of go back to reload the page if there’s a fault on the page and things stop working as usually that’s all it needs.

I don’t want to stop on an error or just ignore the error store | true | !errorIgnore as I saw suggest when googling this.

if the error happens it need to go back to the start and load it again.

You can check the ${!statusOK} value. It is true or false (if error):

gotoif | ${!statusOK} == false | label

1 Like