首页 > 解决方案 > 遍历表中的 webelements 列表并断言每个字符串相等

问题描述

我的目标是遍历表中的 webelements 列表(使用过滤器生成),分布在多个页面中,并在 Cucumber 步骤中使用提供的字符串断言这些 webelements 中的每个字符串相等。

1. Tests in error:

  stale element reference: element is not attached to the page document
 2.  Not sure how to integrate the assert.

实际代码:

    By nextPageBtn = By.xpath("//*[@data-testid='asd']");

    By disabledNextPageBtn = By.xpath("//*[@data-testid='asdf']");

    By filterValue = By.xpath("//*[@data-testid='asdf1']");
    

    public List<String> sameFilterResultIsDisplayedForAllRows() {

        List<WebElement> filterResultsList = new ArrayList<WebElement>();
        List<String> stringsFromFilterResultsList = new ArrayList<String>();

        boolean disabledNext = false;

        do {
            click(driver, nextPageBtn);

            filterResultsList.addAll(driver.findElements(filterValue));

            try {
                getValueFromSomeAttribute(driver, disabledNextPageBtn,
                        "randomElementAttribute");
                disabledNext = true;

            } catch (Exception e) {

            }


        } while (disabledNext == false);


        for (WebElement filterResultsList) {
            System.out.println(a.getText());

            try {
                stringbookings.add(a.getText());
            } catch (Exception e) {

            }

        }

        return stringsFromFilterResultsList;
    }


The assert would be something like this:

    @Then("the results filtered for all rows contain value {string}")
    public void expectedFilteredValues(String expectedFilteredValueString) {

    String expectedFilteredResult;
    expectedFilteredResult = 'randomString';

    List<String> actualFilteredValues = javaMethods.sameFilterResultIsDisplayedForAllRows();

    Assert.assertEquals(expectedFilteredResult, actualFilteredValues);

标签: javaselenium

解决方案


问题在于 addAll(),prolly 因为这个:

“如果在操作过程中修改了指定的集合,则该操作的行为是不确定的。(注意,如果指定的集合是这个列表,并且它是非空的,就会发生这种情况。)”

我必须使用 add(),并在 for 循环中创建一个辅助数组。

for (WebElement element : elements) { stringsFromFilterResultsList.add(bookingTypeElement.getText()); }

然后,断言是这样的:

列表列表 = javaMethods。sameFilterResultIsDisplayedForAllRows();

    for (int i = 0; i < list.size(); i++) {
        Assert.assertEquals(expectedValue, list.get(i));
    }

推荐阅读