我跑我在Eclipse中的硒RC测试使用TestNG。 我有试图打开一个新的浏览器页面的链接。 如何选择这个新页面在操作? 我用这个代码:
selenium.selectWindow("name=NewPage");
但它说找不到网页。 我也试着定义页面ID或标题使用此代码:
String[] wins = selenium.getAllWindowIds();
for (String s : wins)
System.out.println("win: " + s);
它没有定义我的新打开的窗口中:
win: MainPage
win:
如果使用selenium.getAllWindowNames()
我得到win: selenium_main_app_window win: selenium_blank65815
。
我编写此代码selenium.selectWindow("name=blank99157");
但得到的错误- ERROR: Window does not exist. If this looks like a Selenium bug, make sure to read http://seleniumhq.org/docs/02_selenium_ide.html#alerts-popups-and-multiple-windows for potential workarounds.
ERROR: Window does not exist. If this looks like a Selenium bug, make sure to read http://seleniumhq.org/docs/02_selenium_ide.html#alerts-popups-and-multiple-windows for potential workarounds.