Java或Javascript中的窗口对话框和弹出窗口处理
我需要使用Java或基于Javascript的自动化解决方案来操纵IE浏览器的“弹出窗口和下载对话框”。
我尝试了selenium2,但是它不能正常工作,因此其他建议也一样。实际上selenium2没有提供警报/下载对话框的正确处理,因此我正在考虑使用其他一些javascript
/ java解决方案。
使用“下载对话框”:我需要将下载的文件保存到特定位置。使用“警报对话框”:我需要检查显示的消息并单击特定按钮。
任何建议表示赞赏。谢谢。
回答:
我使用硒1,它可以很好地处理我的应用程序中的弹出窗口。
//Click on browse file button, open a popup selenium.click("//input[@value='Browse...']");
//waiting for popup to load
selenium.waitForPopUp("_Dialog", "30000");
//selecting the popup by passing window name
selenium.selectWindow("name=_Dialog");
//click a link inside pop up window
selenium.click("link=something");
//Put other popup operations here
//click cancel button for pop up
selenium.click("cancel");
//back to main window
selenium.selectwindow("null")
要从警报框中获取消息,请使用selenium.getAlert();
。这将以字符串形式返回包含在警报框中的消息。
另外,有时需要在切换到警报之前检查是否已发生警报。
int noofWindows = selenium.getAllWindowNames().length; if (noofWindows > 1){
//selects the second window
selenium.selectWindow(selenium.getAllWindowIds()[2]);
//Prints the message in the alert window
System.out.println(selenium.getAlert());
}
如果不需要在IE中运行测试,请在执行代码之前使用firefox(* chrome)并关闭所有其他窗口。
我希望这可以帮助你。
*所有提及的代码均用于处理JavaScript弹出窗口。我不确定这是否适用于Vb脚本。
我认为IE下载弹出窗口是Windows事件,因此无法直接由Selenium处理,因此您必须使用Java AWT或AutoIT。
AutoIT脚本应该类似于
WinWaitActive(windowTitle)ControlClick(windowTitle,"",buttonName)
并将其另存为IEsave.exe。注意:我没有尝试过此AutoIT脚本。
现在,您已从程序中执行IEsave.exe。我在这里使用Java。
java.lang.Runtime.getRuntime().exec("c:/IEsave.exe");
这将执行该文件,该文件将依次处理Windows的保存按钮事件。
您可以创建类似的exe文件来处理其他窗口的事件。
希望这能解决您的问题。
以上是 Java或Javascript中的窗口对话框和弹出窗口处理 的全部内容, 来源链接: utcz.com/qa/413050.html