How to handle errors when loading website

Hello @Dawid_Nguyen

If the website gets load properly you will be doing some action on the website.
So directly you can check for some element , if it’s false then you can thrown and exception.
So the Process should be in a Try catch block. if an exception is caught, then if you need to retry you can do that.

So in this kind of scenarios better to go with Reframework if your system can throw exceptions during execution.

Thanks