A web page unexpectedly opening caused the process to stop

A web page unexpectedly opening caused the process to stop. how can I process the following row in the loop after skipping this?

@SURESH_P

In the catch block…close the web pages and then re open them for the next item in the loop

Cheers

Hi @SURESH_P
Use Try-Catch block to avoid this issue.

Thanks!!!

Hello @SURESH_P

Is it happening always or random??

If it sometimes occuring then you have to create the logic by putting it inside a try catch block and then close the browser and repeat the process.

Another approach is to use the Global exception handler.

Thanks