How should one deal With an Unresponsive IE or web pages?

How can I reload the webpage and make sure the bot is started from the point where the page becomes unresponsive and how can one make bot Identify if the browser is going /gone into an unresponsive state? (IE in this case)

Thank you. Please guide me.

I can’t really give a direct solution as the Process depends on Business Rules. Below things might help.

  1. System.Diagnostics.Process.GetProcessesByName(“iexplore”) should give you the IE process. Assign it to a process variable.

  2. process.IsResponding(bool ) will give the responsive state of the process.

  3. If false, you can getattribute (url ) of current page.

  4. Do Kill Process to close IE

  5. Using the url from #3 login back and proceed where the robot stopped.