尽管重试了 20 次,但过时的元素异常仍然存在



我之前看到过一个关于陈旧元素异常的帖子,并使用重试代码来处理它。但是,尽管将计数保持在20,陈旧的元素异常仍然存在。我可以看到element2已加载到正在测试的网页中。但它仍然是陈旧的元素。该代码有时适用于元素 1。但从不为元素2法典:

for (i = 1; i < 7; i++)
        {   
            sServiceID = ExcelUtils.getCellData(i,Constant.Col_ServiceID);
            System.out.println("sServiceID:"+sServiceID);   
            ServiceID_Filter().clear();//function returns element
            ServiceID_Filter().sendKeys(sServiceID);
            BaseClass.driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
            Thread.sleep(3000);
            ApplyFilters_element().click();
            Thread.sleep(3000);

      boolean result = false;
                        int attempts = 0;
                        while(attempts < 20) {
                            System.out.println("inside stale check loop");
                            BaseClass.driver.manage().timeouts().implicitlyWait(20,TimeUnit.SECONDS);
                            try {
                                if(element1.isDisplayed()||element2.isDisplayed())  //either one of the elements will be loaded
                                {
                                System.out.println("not stale "+Table_widget.ExportButton().isDisplayed());
                                result = true;
                                break;
                                }
                            } catch(StaleElementReferenceException e) {
                                System.out.println("stale at attempt "+attempts);
                            }
                            attempts++;
                        }
    if(result==true)
                  {
                      if(element1.isDisplayed())
                      {
                          element3.click();  
                          System.out.println(" button clicked");
                          Thread.sleep(1000);
                      }
                      else
                          if(element2.isDisplayed())
                          {  element3.click();  
                             System.out.println("No records found"); 
                             Thread.sleep(1000);
                          }
                  }
        }

以我的拙见,问题就在这里:

 BaseClass.driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
            Thread.sleep(3000);
            ApplyFilters_element().click();
            Thread.sleep(3000);

首先,您使用的是隐式等待加线程睡眠,这是灾难的秘诀。这就是导致陈旧元素异常的原因,请尝试以下操作:

public boolean waitForElement(String elementXpath, int timeOut) {
    try{                    
    WebDriverWait wait = new WebDriverWait(driver, timeOut); 
    boolean elementPresent=wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath(elementXpath)).isDisplayed());
    System.out.printf("%nElement is present [T/F]..? ")+elementPresent;
    }        
    catch(TimeoutException e1){e1.printStackTrace();elementPresent=false;}          
    return elementPresent;   
 }

祝你好运!

相关内容

  • 没有找到相关文章

最新更新