自動化テストにセレンを使用しています
次のコードを使用して、名前が検索リストに存在することを確認します
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()