How to switch into Window using Index in Selenium(如何利用Selenium中的索引切换到窗口)
问题描述
因为Selenium没有提供切换到窗口(多个窗口)的方法,但是我想做一个自定义的方法来使用索引切换到不同的窗口。但是下面的代码没有按照预期工作。请建议以下方法的最佳实施。
public void switchToWindowIndex(int index) {
Set<String> windows = driver.getWindowHandles();
int totalWin = windows.size();
String winTitle = null;
for (int i =0; i<= totalWin; i++) {
if (i == index) {
winTitle = windows.toArray()[i].toString();
return;
}
System.out.println(windows.toArray()[i].toString());
}
driver.switchTo().window(winTitle);
logger.info("Switched to " + driver.getTitle());
}
提前感谢。
推荐答案
使用Selenium时,不应在窗口句柄之间使用索引,因为虽然看起来窗口句柄的排序方式是先排序最旧的窗口,最后排序最新的窗口。但事实并非如此:它完全是随机的!
在一次讨论中,Simon明确提到:
While the datatype used for storing the list of handles may be ordered by insertion, the order in which the WebDriver implementation iterates over the window handles to insert them has no requirement to be stable. The ordering is arbitrary.
因此,要在窗口句柄之间切换,您必须使用以下任一选项:
- A设置,详情请参见Selenium switch focus to tab, which opened after clicking link
- 迭代器,您可以在Best way to keep track and iterate through tabs and windows using WindowHandles using Selenium 中找到详细讨论
这篇关于如何利用Selenium中的索引切换到窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何利用Selenium中的索引切换到窗口
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01