你们怎么在那里的Webaii人处理javascript确认弹出窗口?
我在ArtOfTest.WebAii.Win32.Dialogs中找不到ConfirmDialog类,如果我尝试使用AlertDialog,我会因为AlertDialog类的ctor中的验证规则而得到ArgumentException: “System.ArgumentException:Alert对话框只能使用OK或CLOSE按钮解除”
Manager.DialogMonitor.AddDialog(new AlertDialog(ActiveBrowser,DialogButton.CANCEL)); Manager.DialogMonitor.Start();
答案 0 :(得分:1)
您可以在WebAii中执行自己的自定义对话框处理:
答案 1 :(得分:1)
实际上你的问题是缺少警告对话框。
所以你需要添加这样的东西来忽略意外的对话框处理程序:
myManager.Settings.UnexpectedDialogAction = UnexpectedDialogAction.DoNotHandle;
在之前添加前面的代码,点击触发警告框的元素。