Class GrouperUiBrowserGroupFinder
java.lang.Object
edu.internet2.middleware.grouper.app.browser.GrouperUiBrowser
edu.internet2.middleware.grouper.app.browser.GrouperUiBrowserGroupFinder
This class is used to programmatically find a group. This is going to search by the name in the search box.
It will page through the results until it finds the right group. The group will be clicked on and the main group page will be ready.
Find a group by name
GrouperUiBrowserGroupFinder grouperUiBrowserGroupFinder = new GrouperUiBrowserGroupFinder(grouperPage).assignGroupToFindName("test:test25").browse();
Find a group by Uuid
GrouperUiBrowserGroupFinder grouperUiBrowserGroupFinder = new GrouperUiBrowserGroupFinder(grouperPage).assignGroupToFindId("a1b2c3d4").browse();
Find a group by group object
GrouperUiBrowserGroupFinder grouperUiBrowserGroupFinder = new GrouperUiBrowserGroupFinder(grouperPage).assignGroupToFind(group).browse();
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionassignGroupToFind
(Group group) Pass in a group objectassignGroupToFindId
(String groupToFindId) Uuid of the groupassignGroupToFindName
(String groupToFindName) Id Path in UIbrowse()
Method used to find a groupId Path in UIMethods inherited from class edu.internet2.middleware.grouper.app.browser.GrouperUiBrowser
getGrouperPage
-
Constructor Details
-
GrouperUiBrowserGroupFinder
-
-
Method Details
-
getGroupToFindName
Id Path in UI -
assignGroupToFindName
Id Path in UI- Parameters:
groupToFindName
-- Returns:
- this object
-
assignGroupToFindId
Uuid of the group- Parameters:
groupToFindName
-- Returns:
- this object
-
assignGroupToFind
Pass in a group object- Parameters:
groupToFindName
-- Returns:
- this object
-
browse
Method used to find a group
-