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

前端之家收集整理的这篇文章主要介绍了c# – 这个错误意味着什么:陈旧元素引用:元素没有附加到页面文档?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的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;
  }
}
原文链接:https://www.f2er.com/csharp/243427.html

猜你在找的C#相关文章