как обрабатывать веб-таблицу в selenium java, когда количество строк в таблице изменяется после перезагрузки страницы, когда в строке выполняется какое-то действие

В настоящее время я переживаю ситуацию. В теле таблицы три строки. Я должен выполнить какое-то действие с каждой строкой, если строка соответствует тексту. Для этого я получаю размер строк, использую цикл for и проверяю условие. Когда условие выполнено, я должен выполнить какое-то действие, с помощью которого строка удаляется из веб-таблицы, что соответствует моим ожиданиям. Кроме того, я получаю org.openqa.selenium.StaleElementReferenceException: здесь «totalOrders.get(i).click();» когда цикл пытается выполнить действие в следующей строке здесь

вот часть моего кода:

      By loading = By.xpath("//div[@class='loading-wrap']");
By orders = By.xpath("//tbody/tr"); //this retruns 3 row

public void invoiceAllStockOrder() {

    eu.waitForInvisibilityOfElementLocated(loading, 10);

    List<WebElement> totalOrders = eu.getElements(orders);
    int rowSize =totalOrders.size();
    if(rowSize == 0) {
        System.out.println("No order");
    }

    else {

        for (int i = 0; i < totalOrders.size(); i++) {
            eu.waitForInvisibilityOfElementLocated(loading, 10);

            totalOrders.get(i).click();//getting stale element exception here when i = 1 but there are still 2 rows left
            selectInstockOrders();
            invoiceOrder();
                
        }
    }
}

1 ответ

      If the page has Javascript which automatically updates the DOM, 
you should assume a StaleElementException will occur.

Can you try with the below code, I hope this will work for you

public boolean retryingFindClick(By by) {
    boolean result = false;
    int attempts = 0;
    while(attempts < 2) {
        try {
            driver.findElement(by).click();
            result = true;
            break;
        } catch(StaleElementException e) {
        }
        attempts++;
    }
    return result;
}
This will attempt to find and click the element. If the DOM changes 
between the find and click, it will try again.