Selenium报错:StaleElementReferenceException异常
Posted ZSYL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium报错:StaleElementReferenceException异常相关的知识,希望对你有一定的参考价值。
问题报错
# 点击下一页
web.find_element_by_xpath('//*[@id="nexthehe"]').click()
The element is no longer attached to the DOM
:元素不再附加到DOM上
解决方法
元素不再附加到DOM上
分析原因
有可能是引导了不再附加到DOM树的元素(比如,document.documentElement)
也可是是页面内容没有加载出来,找不到
解决方法:
仍然是再次查找该元素
try:
# 点击下一页
web.find_element_by_xpath('//*[@id="nexthehe"]').click()
# time.sleep(1)
except Exception:
print('点击下一页出错!')
web.find_element_by_xpath('//*[@id="nexthehe"]').click()
参考:
加油!
感谢!
努力!
以上是关于Selenium报错:StaleElementReferenceException异常的主要内容,如果未能解决你的问题,请参考以下文章