概述
在编写selnium的代码的时候,有时候最郁闷的大概是元素无法定位,而这种无法定位是指,明明通过xpath定位器或者是js的document.getElementByIdx_x,document.getElementBytag等方法提供方法找不到,如多层嵌套的div带data-json的对象,这时候大概唯一方法就是offset了。
1.如果是页面跳转产生的无法定位元素,可以通过 下面的函数解决问题;
public WebDriver switchWebPage() {
WebDriver window = null;
String currentWindow = webdriver.getWindowHandle();
Set handles = webdriver.getWindowHandles();
Iterator it = handles.iterator();
while (it.hasNext()) {
if (currentWindow == it.next())
continue;
window = webdriver.switchTo().window(it.next());
System.out.println("title,url = " + window.getTitle() + ","
+ window.getCurrentUrl());
}
return window;
}
2,如果是frame切换导致的无法定位元素,可以通过下面的实例函数解决问题
public WebElement ScrollInfo() throws InterruptedException {
WebElement frame = webdriver.findElement(By.id("marqueeiframe"));
webdriver.switchTo().frame(frame);
while (!webdriver.findElement(By.linkText("天冷了")).isDisplayed()) {
Thread.sleep(500);
}
return webdriver.findElement(By.linkText("天冷了"));
}
3. 如果是隐藏元素,调出js神器。
4.如果是在xpath明明显示可以定位元素,但是findElment始终报错,可以通过action提供的相邻识别解决;
最后
以上就是碧蓝电话为你收集整理的selenium实战:如何解决无论如何都无法定位的点击展开元素问题的全部内容,希望文章能够帮你解决selenium实战:如何解决无论如何都无法定位的点击展开元素问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复