Selenium WebDriver定位不到元素的原因及解決辦法

來源:互聯網
上載者:User

標籤:原因   安全   登陸   expected   ext   線程   body   uncaught   conf   

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());
               }
          }

Selenium WebDriver定位不到元素的原因及解決辦法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.