我使用 selenium 进行自动化测试
我使用以下代码来验证搜索列表中是否存在名称
searchList = driver.findElements(By.cssSelector(searchListLocator));
logger.log("Size of list : " + searchList.size());
for (WebElement searchItem : searchList)
{
logger.log("Search Item name :" + searchItem.getText())
if (searchItem.getText().trim().compareTo(name) == 0)
{
inResult = true;
logger.log("Exact match found in the list");
break;
}
}
有时我得到了Size of list : 11
但是searchItem.getText()
是一个空字符串