Hello all!
I can’t seem to figure this one issue out. I have a try catch inside a For Each loop. The Try block scrapes certain text from a grid, row by row. I have a check counter that identifies the row. Inside the Catch block, if exception, write to an excel sheet if it was unable to scrape that text. I have tried to add a “continue” activity inside the catch block for it to skip that iteration that it cannot scrape and move onto the next but it seems to be just stuck on the current one. In summary, my try block works, my catch block works for the first exception it catches, even with a continue activity, it won’t skip that activity and move onto the next. Is it something to do with my counter in my try block? I appreciate any insight