Skip to content
Snippets Groups Projects
Commit 05cc8376 authored by srosse's avatar srosse
Browse files

OO-991: selenium test for the group task with standard settings and all steps...

OO-991: selenium test for the group task with standard settings and all steps made with three hands, selenium test for enrollment with unlimited sized groups ( follow a bug with this particular setting )
parent 6955f456
No related branches found
No related tags found
No related merge requests found
...@@ -53,6 +53,8 @@ public class GroupTaskToCoachPage { ...@@ -53,6 +53,8 @@ public class GroupTaskToCoachPage {
List<WebElement> rows = browser.findElements(tableRowBy); List<WebElement> rows = browser.findElements(tableRowBy);
WebElement selectLinkEl = null; WebElement selectLinkEl = null;
for(WebElement row:rows) { for(WebElement row:rows) {
String firstName = user.getFirstName();
String text = row.getText();
if(row.getText().contains(user.getFirstName())) { if(row.getText().contains(user.getFirstName())) {
selectLinkEl = row.findElement(selectLinkBy); selectLinkEl = row.findElement(selectLinkBy);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment