Message: stale element reference: element is not attached to the page document错误解决方法
Posted huangquanbin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Message: stale element reference: element is not attached to the page document错误解决方法相关的知识,希望对你有一定的参考价值。
解决方法示例:
错误写法:
all_a = driver.find_elements_by_class(‘classname‘)
for a in all_a:
a.click()
...
这样就容易点击了第一个a之后,页面出现刷新的情况,再想点第二个就会报这个错
可以改成:
counts_a = len(driver.find_elements_by_class(‘class name‘))
for i in range(counts_a):
driver.find_element_by_xpath(‘//a[@class="class name"][i+1]‘).click()
可能会更好一些,当然,也有其他的写法,大概意思就是需要在刷新后重新去定位一次,再用重新定位到的元素去操作
————————————————
版权声明:本文为CSDN博主「python_little_Boy」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_35206389/article/details/79778619
以上是关于Message: stale element reference: element is not attached to the page document错误解决方法的主要内容,如果未能解决你的问题,请参考以下文章
[自动化测试]Stale Element Reference Exception
stale element reference: element is not attached to the page document 异常
关于报错stale element reference: element is not attached to the page document处理