Skip to content
Snippets Groups Projects
Commit 8c322f1a authored by Manuel Leduc's avatar Manuel Leduc
Browse files

[Misc] GroupEditPage.removeMembers is flickering

parent 7e050625
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,8 @@ public GroupEditPage removeMembers(String... members)
for (WebElement row : getMembersTable().getRows()) {
if (Objects.equals(getRowUserName(row), member)) {
getMembersTable().clickAction(index, "delete");
// Wait for the confirmation message before moving to the next member.
waitForNotificationSuccessMessage("Member successfully removed from group");
break;
}
index++;
......
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