0
A
回答
2
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);
0
browser.RunScript(@"
window.onbeforeunload = function()
{
event.returnValue = 'Are you sure you want to leave this page?';
}
");
相關問題
- 1. 華廷處理IE 11「你確定要離開這個頁面嗎?」彈出
- 2. 如何處理'您確定要離開此頁面'離開此頁面嗎?
- 3. 使用華廷
- 4. 如何使用華廷
- 5. C#,正確使用Internet Explorer華廷
- 6. 如何處理會話管理和餅乾華廷
- 7. 你是如何禁用的,你確定要離開這個頁面提醒嗎?
- 8. 處理「你確定你想離開這個頁面」Selenium 2.0中的消息
- 9. 軟件使用華廷
- 10. 不能使用華廷
- 11. 如何克隆在華廷
- 12. 在華廷
- 13. 在華廷
- 14. 華廷在Firefox
- 15. 使用華廷來確定網站的位置在谷歌
- 16. ASP.Net - Safari alert - 你確定要離開這個頁面嗎?
- 17. 如何要等到文本框在華廷使
- 18. 無法從華廷
- 19. 什麼是華廷
- 20. 華廷錯誤ElementNotFoundException
- 21. 華廷EVAL問題
- 22. 華廷:確定是否鏈接已禁用=「禁用」屬性
- 23. 如何在js中刪除「你確定要離開這個頁面」對話框
- 24. 華廷:錯誤打開Internet Explorer
- 25. 「你確定要離開這個頁面嗎?」功能取消和確定
- 26. 如何防止「您確定要離開此頁面嗎?」提交表單提醒?
- 27. 華廷:如何在其他框架
- 28. 如何點擊一個AutoCompleteExtender與華廷
- 29. 如何解決華廷OutOfMemoryException異常
- 30. 華廷處理程序對於VBScript輸入框
也許你可以用JavaScript之前禁用它(browser.Eval(...))http://stackoverflow.com/questions/1119289/how-to-show-the-are-you -sure任您想瀏覽的-外之本頁面-時-CH – alonp