c# – 这个错误意味着什么:陈旧元素引用:元素没有附加到页面文档?

c# – 这个错误意味着什么:陈旧元素引用:元素没有附加到页面文档?,第1张

概述在我的C#app中使用selenium web驱动程序,我收到此错误: OpenQA.Selenium.StaleElementReferenceException: stale element reference: element is not attached to the page document 在这段代码中: IWebElement e = driver.FindElement(By. 在我的C#app中使用selenium web驱动程序,我收到此错误:

OpenQA.Selenium.StaleElementReferenceException: stale element
reference: element is not attached to the page document

在这段代码中:

IWebElement e = driver.FindElement(By.XPath(link_click),10);e.Click();

错误行在e.Click()中,但这是一个在XPath指定的同一链接中成功执行但在最后一次尝试失败的过程!那么这个错误意味着什么以及如何解决它?

解决方法 这意味着要么在页面中更改元素,要么删除元素,在此链接 http://www.seleniumhq.org/exceptions/stale_element_reference.jsp中完全引用

解决这个问题的一种方法是,你可以进行重试,可能是类似的

bool staleElement = true; while(staleElement){  try{     driver.FindElement(By.XPath(link_click),10).Click();     staleElement = false;  } catch(StaleElementReferenceException e){    staleElement = true;  }}
总结

以上是内存溢出为你收集整理的c# – 这个错误意味着什么:陈旧元素引用:元素没有附加到页面文档?全部内容,希望文章能够帮你解决c# – 这个错误意味着什么:陈旧元素引用:元素没有附加到页面文档?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1248966.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存