Skip to content

Commit 6bea191

Browse files
Merge 24.3 to 24.7
2 parents 9f51aff + 2834fce commit 6bea191

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

ehr/test/src/org/labkey/test/pages/ehr/NotificationAdminPage.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,11 @@ public void clickManuallyTriggerEmail(String name)
111111

112112
public void addManageUsers(String notification, String user)
113113
{
114-
log("Adding " + user + "to" + notification);
115-
notification = notification.replace(" ", "");
116-
notification = "manageUser_" + notification;
117-
clickAndWait(Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups"), 0);
114+
log("Adding " + user + " to" + notification);
115+
notification = "manageUser_" + notification.replace(" ", "");
116+
Locator notificationLoc = Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups");
117+
scrollIntoView(waitForElement(notificationLoc)).click();
118118
_ext4Helper.selectComboBoxItem("Add User Or Group:", user);
119119
clickButton("Close", 0);
120-
121120
}
122121
}

0 commit comments

Comments
 (0)