Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix locator for JoinLanguageTeamTest
Browse files Browse the repository at this point in the history
  • Loading branch information
djansen-redhat committed Feb 24, 2016
1 parent 3a78811 commit 2439fa6
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -114,8 +114,9 @@ public List<String> getMemberUsernames() {
WebElement form = existingElement(By.id("members-form"));
for (WebElement listEntry : form
.findElements(By.className("list__item--actionable"))) {
names.add(listEntry.findElement(By.tagName("a")).getText().trim());
names.add(listEntry.findElement(By.className("list__item__info")).getText().trim());
}
log.info("Found {}", names);
return names;
}

Expand Down

0 comments on commit 2439fa6

Please sign in to comment.