I always use (Continue) activity inside the catch block inside for each row in data table activity and it always works properly, but today when I used it I was surprised that the robot continue executing the activities after (Continue) activity and throw system error which it is normal because I add try-catch and used (Continue) to prevent the robot from continue executing and force move to next line in the data table.
so I added a log message before and after (Continue) activity to trace the execution and I see this result
the robot print both messages as you see in the images
and another strange thing is that I added another log message after that try-catch activity immediately and only rare once the robot executes this activity(after about 800 rows)
please can anyone explain to me what happened ? and how can I prevent the robot from executing after (Continue) activities
@Mohammed_Bakr i think if you put continue in “Catch”, the robot still executes activities inside the catch block BUT will skip everything after the catch. im not sure if this is intended or not
you can see my example here, it prints after but not after2