Class GrouperUiBrowserGroupFinder

java.lang.Object
edu.internet2.middleware.grouper.app.browser.GrouperUiBrowser
edu.internet2.middleware.grouper.app.browser.GrouperUiBrowserGroupFinder

public class GrouperUiBrowserGroupFinder extends GrouperUiBrowser
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 Details

    • GrouperUiBrowserGroupFinder

      public GrouperUiBrowserGroupFinder(GrouperPage grouperPage)
  • Method Details