Selenium WebDriver定位不到元素的原因及解决办法

1.动态id定位不到元素
for example:
        //WebElement  xiexin_element = driver.findElement(By.id("_mail_component_82_82"));
         WebElement xiexin_element = driver.findElement(By.xpath("//span[contains(.,‘写  信‘)]"));
        xiexin_element.click();

上面一段代码注释掉的部分为通过id定位element的,但是此id“_mail_component_82_82”后面的数字会随着你每次登陆而变化,此时就无法通过id准确定位到element。
    所以推荐使用xpath的相对路径方法查找到该元素。

2.iframe原因定位不到元素

由于需要定位的元素在某一个frame里边,所以有时通过单独的id/name/xpath还是定位不到此元素
比如以下一段xml源文件:
<iframe id="left_frame" scrolling="auto" frameborder="0" src="index.php?m=Index&a=Menu" name="left_frame" noresize="noresize" style="height: 100%;visibility: inherit; width:  100%;z-index: 1">

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML  4.01 Transitional//EN"  "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<body class="menuBg">

<div id="menu_node_type_0">

<table width="193" cellspacing="0" cellpadding="0" border="0">

<tbody>

<tr>

<tr>

<td id="c_1">

<table class="menuSub" cellspacing="0" cellpadding="0" border="0" align="center">

<tbody>

<tr class="sub_menu">

<td>

<a href="index.php?m=Coupon&a=SearchCouponInfo" target="right_frame">密码重置</a>

</td>

</tr>

原本可以通过
WebElement element =  driver.findElement(By.linkText("密码重置"));
来定位此元素,但是由于该元素在iframe id="left_frame"这个frame里边  所以需要先通过定位frame然后再定位frame里边的某一个元素的方法定位此元素
WebElement element  =driver.switchTo().frame("left_frame").findElement(By.linkText("密码重置"));

3.不在同一个frame里边查找元素
大家可能会遇到页面左边一栏属于left_frame,右侧属于right_frame的情况,此时如果当前处在
left_frame,就无法通过id定位到right_frame的元素。此时需要通过以下语句切换到默认的content
driver.switchTo().defaultContent();

例如当前所在的frame为left_frame

WebElement xiaoshoumingxi_element =  driver.switchTo().frame("left_frame").findElement(By.linkText("销售明细"));
        xiaoshoumingxi_element.click();

需要切换到right_frame      
       driver.switchTo().defaultContent();
       
        Select quanzhong_select2 = new  Select(driver.switchTo().frame("right_frame").findElement(By.id("coupon_type_str")));
        quanzhong_select2.selectByVisibleText("售后0小时");

4.  xpath描述错误
这个是因为在描述路径的时候没有按照xpath的规则来写 造成找不到元素的情况出现

5.点击速度过快  页面没有加载出来就需要点击页面上的元素
这个需要增加一定等待时间,显示等待时间可以通过WebDriverWait  和util来实现
例如:
       //用WebDriverWait和until实现显示等待  等待欢迎页的图片出现再进行其他操作
       WebDriverWait wait = (new  WebDriverWait(driver,10));
       wait.until(new  ExpectedCondition<Boolean>(){
           public Boolean apply(WebDriver  d){
               boolean loadcomplete =  d.switchTo().frame("right_frame").findElement(By.xpath("//center/div[@class=‘welco‘]/img")).isDisplayed();
                return loadcomplete;
           }
        });
也可以自己预估时间通过Thread.sleep(5000);//等待5秒 这个是强制线程休息

6.firefox安全性强,不允许跨域调用出现报错
错误描述:uncaught exception:  [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)  [nsIDOMNSHTMLDocument.execCommand]" nsresult: "0x80004005 (NS_ERROR_FAILURE)"  location:

解决办法:
这是因为firefox安全性强,不允许跨域调用。 
Firefox  要取消XMLHttpRequest的跨域限制的话,第一
是从 about:config 里设置  signed.applets.codebase_principal_support = true; (地址栏输入about:config  即可进行firefox设置)
第二就是在open的代码函数前加入类似如下的代码: try {  netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead"); }  catch (e) { alert("Permission UniversalBrowserRead denied."); }

7.窗口句柄还停留在上一个页面,对于新弹出的页面还没有定位

//得到当前窗口的句柄

String currentWindow = driver.getWindowHandle();

//得到所有窗口的句柄

Set<String> handles = driver.getWindowHandles();

    

//不包括当前窗口
handles.remove(currentWindow);
  

//判断是否存在窗口

    System.out.println(handles.size());
      if (handles.size() > 0) {
                try{
          //定位窗口
          driver.switchTo().window(handles.iterator().next());
          }catch(Exception e){
                         System.out.println(e.getMessage());
               }
          }

时间: 2024-10-05 14:46:02

Selenium WebDriver定位不到元素的原因及解决办法的相关文章

Python+Selenium定位不到元素常见原因及解决办法

在做web应用的自动化测试时,定位元素是必不可少的,这个过程经常会碰到定位不到元素的情况(报selenium.common.exceptions.NoSuchElementException),一般可以从以下几个方面着手解决: 1.Frame/Iframe原因定位不到元素: 这个是最常见的原因,首先要理解下frame的实质,frame中实际上是嵌入了另一个页面,而webdriver每次只能在一个页面识别,因此需要先定位到相应的frame,对那个页面里的元素进行定位. 解决方案:如果iframe有

selenium webdriver定位不到元素的五种原因及解决办法

转自http://www.51testing.com/html/87/300987-831171.html 1.动态id定位不到元素for example:        //WebElement xiexin_element = driver.findElement(By.id("_mail_component_82_82"));        WebElement xiexin_element = driver.findElement(By.xpath("//span[c

转载:selenium webdriver定位不到元素的五种原因及解决办法

1.动态id定位不到元素for example:        //WebElement xiexin_element = driver.findElement(By.id("_mail_component_82_82"));        WebElement xiexin_element = driver.findElement(By.xpath("//span[contains(.,'写 信')]"));        xiexin_element.click

Selenium webdriver定位iframe里面元素

在查找元素过程中,直接通过id或者xpath等找不到元素,查看页面源代码发现元素是属于iframe里,例如: <div class="wrap_login"> <iframe class="frame_login" src="https://exaccount.eastmoney.com/home/login?request=%7b%22agentPageUrl%22%3a%22https%3a%2f%2fpassport.eastmon

Selenium::WebDriver::Error::WebDriverError:Unable to find standalone executable解决办法

情况描述: 在Watir-Webdriver环境下运行脚本报错(红色标记部分): C:\>irbirb(main):001:0> require 'watir-webdriver'=> trueirb(main):002:0> Watir::Browser.new :ieSelenium::WebDriver::Error::WebDriverError: Unable to find standalone executable. Please download the IEDri

HttpClient的CircularRedirectException异常原因及解决办法

HttpClient的CircularRedirectException异常原因及解决办法 这两天在使用我自己爬虫抓取网页的时候总是出现 org.apache.http.client.ClientProtocolException at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:909) at org.apache.http.impl.client.AbstractHttpClie

Android intent 传值不更新的原因和解决办法

当 Activity 的启动模式是 singleTask 或者 singleInstance 的时候.如果使用了 intent 传值,则可能出现 intent 的值无法更新的问题.也就是说每次 intent 接收到的值都是第一次接到的值.因为 intent 没有被更新.想要更新需要做两件事情. 1. 发送方 Activity,加上一句话 ? 1 PendingIntent pendingIntent = PendingIntent.getActivity(context,0,intent,Pen

[转]&quot;error while loading shared libraries: xxx.so.x&quot; 错误的原因和解决办法

[转]"error while loading shared libraries: xxx.so.x" 错误的原因和解决办法 http://blog.csdn.net/sahusoft/article/details/7388617 一般我们在Linux下执行某些外部程序的时候可能会提示找不到共享库的错误, 比如: tmux: error while loading shared libraries: libevent-1.4.so.2: cannot open shared obje

js报TypeError $(...) is null错误,jquery失效的原因及解决办法

最近在工作中发现个问题,原本好好的网页,写了一些自己的jquery代 码之后,竟然总是不起作用,无论写的多么简单,都不起作用,似乎jquery失效了一般,在火狐下调试看了下,页面报TypeError $(...) is null这种错误,找了半天原因最后发现竟是页面中加载的一个插件给捣的鬼,是它将jquery的$方法给覆盖了.对于这个问题,现在分享两种解决方法. (1)删冲突插件,jquery作为基础库,当然是没有理由被删了.这个方法最直接了. (2)将jquery的$方法改名,具体改名方法如下