我收到以下错误。
Exception in thread "main" org.openqa.selenium.NoSuchElementException: no such element
(Session info: chrome=39.0.2171.95)
从错误消息的外观来看,它说找不到该元素。
所以我添加了一个等待,直到元素出现。
有趣的是,该错误发生在行driver.findElement上,这意味着等待能够找到该元素。
问题显然是硒为什么找不到元素。
起初我以为是因为在字符串中使用了变量
driver.findElement(By.id("_ctl0_ContentPlaceHolder1_eoiSectionSummary_individualRepeater__ctl0_sectionRepeater__ct" + i + "_isCompleteLabel")).getText();
所以我试图将字符串存储在某个地方,然后使用findElement。
正如您在下面的代码中看到的那样,我尝试使用print来验证字符串与网络中的字符串相同。他们确实匹配。
我目前没有想法。请帮忙。如果您需要其他任何信息,请告诉我
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;
}
最佳答案
我在选择器中看到一个小错误。您没有正确设置选择器的参数。我不确定这是否是一种非常有效的方式来处理这种情况。
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;
}
关于java - Selenium NoSuchElementException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27911734/