Hello I am getting warning which stops execution.is there a wasy where I can ignore warning and continue with execution ?
Surround that piece of code in Try Catch
Even simplier… ContinueOnError = True
3 Likes
Thanks forgot about that. Will the error be logged in this case?
Hi @sampaddas …
All Commands may not have that “ContinueOnError” options…
if you know where you are getting that exception see that command and find if it is having that oprtion…if so opt it…
else Surround with try catch and update variable in Catch and Use Decision at that end to run again on Error…
Hope it helps u…