Когда я отлаживаю программу, все 3 участника выбраны, но при запуске она выдает ошибку для второго участника, что
java .lang.IllegalStateException: член сети не может быть найден
Входной список имеет следующие значения
- Член группы
- Член сети
- LD Admin
public MessagesPage findRecipient(List userRecipient) throws InterruptedException {
int userCount = userRecipient.size();
int index=0;
for( Object tempUser : userRecipient){
WebElement rightUser = null;
SeleniumUtils.waitElementVisible(driver, searchUser);
searchUser.sendKeys(tempUser.toString());
//output element of drop down search user name
By byUserSearchResult = By.xpath("//tbody[@class='js-pages']/tr/td");
//Wait till the user list is available.
new WebDriverWait(driver, 10).until(ExpectedConditions.visibilityOfElementLocated(byUserSearchResult));
List<WebElement> resultTable = driver.findElements(byUserSearchResult);
//The code is failing here for 3rd element in the list
for (WebElement user : resultTable) {
String check = user.getText();
if (check.contentEquals(tempUser.toString())) rightUser = user;
}
if (rightUser == null)
throw new IllegalStateException("The " + tempUser.toString() + " can not be found");
rightUser.click();
}