How to handle "Are you sure you want to leave this page" popup using watin
I have open one link,after that when i open another link it gives a popup like
"Are you sure you want to leave this page"
how to handle this popup in watin.
How to handle "Are you sure you want to leave this page" popup using watin
I have open one link,after that when i open another link it gives a popup like
"Are you sure you want to leave this page"
how to handle this popup in watin.
WatiN.Core.DialogHandlers.ReturnDialogHandler.CreateInstance().OKButton.Click(); //IE8 or below
WatiN.Core.DialogHandlers.ReturnDialogHandlerIe9 ie9Handler = new WatiN.Core.DialogHandlers.ReturnDialogHandlerIe9(); //IE9
browser.AddDialogHandler(ie9Handler);
ie9Handler.CancelButton.Click();
browser.RemoveDialogHandler(ie9Handler);
browser.RunScript(@"
window.onbeforeunload = function ()
{
event.returnValue = 'Are you sure you want to leave this page?';
}
");