Skip to content

Commit

Permalink
Merge 24.3 to 24.7
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-teamcity committed Nov 22, 2024
2 parents 9f51aff + 2834fce commit 6bea191
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,11 @@ public void clickManuallyTriggerEmail(String name)

public void addManageUsers(String notification, String user)
{
log("Adding " + user + "to" + notification);
notification = notification.replace(" ", "");
notification = "manageUser_" + notification;
clickAndWait(Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups"), 0);
log("Adding " + user + " to" + notification);
notification = "manageUser_" + notification.replace(" ", "");
Locator notificationLoc = Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups");
scrollIntoView(waitForElement(notificationLoc)).click();
_ext4Helper.selectComboBoxItem("Add User Or Group:", user);
clickButton("Close", 0);

}
}

0 comments on commit 6bea191

Please sign in to comment.