关于报错stale element reference: element is not attached to the page document处理

1、现象

在执行脚本时,有时候引用一些元素对象会抛出如下异常

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.

我个人理解:

就是页面元素过期,引用的元素过时,不再依附于当前页面,需要重新定位获取元素对象

如果JavaScript把网页给刷新了,那么操作的时候就会碰到Stale Element Reference Exception。

官方地址:http://docs.seleniumhq.org/exceptions/stale_element_reference.jsp

解决方案:

使用WebDriverWait类的构造方法接受了一个WebDriver对象和一个等待最长时间(30秒)。然后调用until方法,其中重写了ExpectedCondition接口中的apply方法,让其返回一个WebElement,即加载完成的元素,然后点击。默认情况下,WebDriverWait每500毫秒调用一次ExpectedCondition,直到有成功的返回,当然如果超过设定的值还没有成功的返回,将抛出异常,循环五次查找,实际实验发现,函数里虽然最多尝试5次,但是一般也就查询最多3次,也在没有报错,比起线程等待要好很多,

代码如下:

/**
     * 等待指定元素文本出现
     *
     * @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("扫描开始元素结束");
                return true;
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        return result;
    }

原文地址:https://www.cnblogs.com/longronglang/p/8416573.html

时间: 2024-10-27 17:21:04

关于报错stale element reference: element is not attached to the page document处理的相关文章

关于报错stale element reference: element is not attach

1.现象 在执行脚本时,有时候引用一些元素对象会抛出如下异常 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 D

stale element reference: element is not attached to the page document 异常

在执行脚本时,有时候引用一些元素对象会抛出如下异常 org.openqa.selenium.StaleElementReferenceException: stale element reference: element is not attached to the page document 按字面表达的意思大概是,所引用的元素已过时,不再依附于当前页面.通常情况下,这是因为页面进行了刷新或跳转,解决方法是,重新使用 findElement 或 findElements 方法进行元素定位即可.

运行用例时,报错Unknow Error:Element xxx is not clickable……的解决方法

通常这种情况是由于在点击该元素时,js更换了元素属性造成的. 所以可以采用js的方式进行处理 方法如下: WebDriver driver = new FirefoxDriver(); WebElement element =driver.findElement(By.Xpath("//*/[@id='123']/woca") String script = "arguments[0].click();"; JavascriptExecutor js = (Java

taglib报错The content of element type &quot;taglib&quot; must match &quot;(tlib-version,...)

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"                        "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"> <tagl

stale element reference: element is not attached to the page document

//should set firefox path //FirefoxBinary binary=new FirefoxBinary(new File("C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe")); //FirefoxProfile profile = null; System.setProperty("webdriver.chrome.driver", "e:\\chromedrive

mybatis配置文件,注意标签配置顺序。否则报错The content of element type &quot;configuration&quot; must match &quot;(properties?,settings?,...怎么解决

感谢原作者http://www.cnblogs.com/zhoumingming/p/5417014.html 注意每个标签必须按照顺序写,不然就会提示错误 顺序是 <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configurationPUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd

气死人不偿命,Q_OBJECT导致的C++报错,而且还看不明白

为了代码可以同时适应VC++和MingW编译器,我改动了我的代码,变成: #ifdef _MSC_VER #pragma comment(lib, "crypt32.lib") // Link OK,Linux 也要附带这两个库,格式是 -lcrypt32 -lws2_32 #pragma comment(lib, "ws2_32.lib") // Link OK //#pragma comment(lib, "dnsapi.lib") // 没

LAMP(1)--环境搭建及报错解决

环境:CentOS 6.5 ★安装mysql cd /usr/local/src wget http://syslab.comsenz.com/downlo ... -icc-glibc23.tar.gz tar zxvf /usr/local/src/mysql-5.1.40-linux-i686-icc-glibc23.tar.gz  解压 mv mysql-5.1.40-linux-i686-icc-glibc23 /usr/local/mysql  useradd -s /sbin/no

Qt类声明中Q_OBJECT的作用与报错解决

2017-06-22 周四 大雨 北京 院里 新建作图类,继承自QCUstomPlot类 因为需要同时作8张图,都要单坐标缩放的功能,因此想干脆新建一个类,继承自QCUstomPlot,把需要的功能都加上.类名取为QCUstomPlotPlus,最终成功版类代码如下: //声明.explicit是为了禁止隐式转换. class QCustomPlotPlus : public QCustomPlot { Q_OBJECT //重要! public: explicit QCustomPlotPlu