Selenium NoSuchElementException

时间:2015-01-12 22:18:56

标签: java selenium

我收到以下错误。

Exception in thread "main" org.openqa.selenium.NoSuchElementException: no such element
 (Session info: chrome=39.0.2171.95)

从错误消息的外观中可以看出它无法找到这样的元素。 所以我添加了一个等待,直到元素出现。 有趣的是,错误发生在行driver.findElement上,这意味着wait可以找到该元素。

问题显然是为什么硒无法找到元素。

起初我认为这是因为在字符串中使用了一个变量

driver.findElement(By.id("_ctl0_ContentPlaceHolder1_eoiSectionSummary_individualRepeater__ctl0_sectionRepeater__ct" + i + "_isCompleteLabel")).getText();

所以我试着将字符串存储在某处,然后使用它来查找元素。 正如您在下面的代码中看到的,我尝试使用print来验证字符串是否与Web中的字符串相同。他们确实匹配。

我现在缺乏想法。请帮忙。如果您需要任何其他信息,请告诉我

public int verifyCompletion() {

    wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("_ctl0_ContentPlaceHolder1_eoiSectionSummary_individualRepeater__ctl0_sectionRepeater__ctl0_isCompleteLabel")));
    int uncompletedCounter = 0;

    for (int i = 10; i < 20; i++) {
        String text  = "_ctl0_ContentPlaceHolder1_eoiSectionSummary_individualRepeater__ctl0_sectionRepeater__ct" + i + "_isCompleteLabel";
         driver.findElement(By.id(text)).getText();

        System.out.println(text);

        boolean sectionCompleted =text.equalsIgnoreCase("Yes");
        if (!sectionCompleted) {
            uncompletedCounter++;
        }

    }
    return uncompletedCounter;


}

1 个答案:

答案 0 :(得分:2)

我在选择器中看到一个小错误。您没有正确参数化选择器。我不确定它是否是处理这种情况的一种非常有效的方法。

String selector  = "_ctl" + i + "_ContentPlaceHolder1_eoiSectionSummary_individualRepeater__ctl" + i + "_sectionRepeater__ctl" + i + "_isCompleteLabel";

编辑:更精确的代码应如下所示:

public int verifyCompletion() {
    int uncompletedCounter = 0;

    for (int i = 0; i < 10; i++) {
        String selector  = "_ctl" + i + "_ContentPlaceHolder1_eoiSectionSummary_individualRepeater__ctl" + i + "_sectionRepeater__ctl" + i + "_isCompleteLabel";
        (new WebDriverWait(driver, 10)).until(ExpectedConditions.presenceOfElementLocated(By.id(selector)));
        String elementText = driver.findElement(By.id(selector)).getText();

        System.out.println(selector);
        System.out.println(elementText);

        boolean sectionCompleted =text.equalsIgnoreCase("Yes");
        if (!sectionCompleted) {
            uncompletedCounter++;
        }
    }
    return uncompletedCounter;
}