关于报错stale element reference: element is not attach
1、現(xiàn)象
在執(zhí)行腳本時,有時候引用一些元素對象會拋出如下異常
org.openqa.selenium.StaleElementReferenceException: stale element reference: element is not attached to the page document
2、報錯原因
官方給出解釋如下:
The element has been deleted entirely.
The element is no longer attached to the DOM.
我個人理解:
就是頁面元素過期,引用的元素過時,不再依附于當(dāng)前頁面,需要重新定位獲取元素對象
如果JavaScript把網(wǎng)頁給刷新了,那么操作的時候就會碰到Stale Element Reference Exception。
官方地址:http://docs.seleniumhq.org/exceptions/stale_element_reference.jsp
解決方案:
使用WebDriverWait類的構(gòu)造方法接受了一個WebDriver對象和一個等待最長時間(30秒)。然后調(diào)用until方法,其中重寫了ExpectedCondition接口中的apply方法,讓其返回一個WebElement,即加載完成的元素,然后點(diǎn)擊。默認(rèn)情況下,WebDriverWait每500毫秒調(diào)用一次ExpectedCondition,直到有成功的返回,當(dāng)然如果超過設(shè)定的值還沒有成功的返回,將拋出異常,循環(huán)五次查找,實(shí)際實(shí)驗發(fā)現(xiàn),函數(shù)里雖然最多嘗試5次,但是一般也就查詢最多3次,也在沒有報錯,比起線程等待要好很多,
代碼如下:
/*** 等待指定元素文本出現(xiàn)** @param xpath* @param text* @return* @throws Exception*/public Boolean isDisplay(final String xpath, final String text) {logger.info("等待指定元素文本顯示");boolean result = false;int attempts = 0;while (attempts < 5) {try {attempts++;logger.info("掃描開始元素開始第" + attempts + "次");result = new WebDriverWait(driver, 30).until(new ExpectedCondition<Boolean>() {public Boolean apply(WebDriver driver) {return driver.findElement(By.xpath(xpath)).getText().contains(text);}});logger.info("掃描開始元素結(jié)束");return true;} catch (Exception e) {e.printStackTrace();}}return result;}轉(zhuǎn)載于:https://blog.51cto.com/9360230/2069328
總結(jié)
以上是生活随笔為你收集整理的关于报错stale element reference: element is not attach的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 算法笔记--数列分块
- 下一篇: 读HDFS文件