Issue description: I have a test class which has multiple test cases. During the execution of one test the 'Page Could not be loaded' error occurs and driver times out as it does not find any element on page. While I can handle this particular situation by putting try catch statements but I need a way to instruct the driver that whenever it reaches on any such page it shall perform a set of actions (re-visit the site, perform login) and resume the testing from the very next test in current test class where it was stuck.
I'm using Selenium with C# and Nunit 3.0 framework.