轉自http://www.51testing.com/html/87/300987-831171.htmlphp
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">html
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."); }
node