@Test(groups = {"platform", "add new group"}) public void testAddUserIntoGroup() { System.out.println("--Add user to a group--"); magAcc.signIn(USER_ROOT, DATA_PASS); Utils.pause(1000); goToUsersAndGroupsManagement(); Utils.pause(1000); userGroup.chooseGroupTab(); Utils.pause(1000); userGroup.selectGroup(groupName); userGroup.addUsersToGroup(userName, memberShip, select, verify); Utils.pause(1000); magAcc.signOut(); Utils.pause(1000); }
@Test(groups = {"platform", "add new group"}) public void testDeleteGroup() { System.out.println("--Delete a new group--"); magAcc.signIn(USER_ROOT, DATA_PASS); Utils.pause(1000); goToUsersAndGroupsManagement(); Utils.pause(1000); userGroup.chooseGroupTab(); Utils.pause(1000); userGroup.selectGroup(groupName); userGroup.deleteGroup(groupName, true); Utils.pause(3000); magAcc.signOut(); Utils.pause(1000); }
@Test(groups = {"platform", "add new group"}) public void testSelectAndEditGroup() { System.out.println("--Edit a new group--"); magAcc.signIn(USER_ROOT, DATA_PASS); Utils.pause(1000); goToUsersAndGroupsManagement(); Utils.pause(1000); userGroup.chooseGroupTab(); Utils.pause(1000); userGroup.selectGroup(groupName); // userGroup.editGroup(groupName, true); type(ELEMENT_INPUT_LABEL, "", true); type(ELEMENT_TEXTAREA_DESCRIPTION, "edit a group description", true); button.save(); Utils.pause(1000); magAcc.signOut(); Utils.pause(1000); }
/** Qmetry ID: 67841 Manage Lock ================ */ @Test public void test02_ManageLock() { String fileTitle = "Ecms_Admin_Manage_Lock"; String content = "All users in the selected group, would be able to unlock"; By eLockedFile = By.xpath(cMenu.ELEMENT_FILE_TITLE.replace("${titleOfFile}", fileTitle)); String elementLockedArticleIcon = cMenu.ELEMENT_FILE_LOCKED_BY_ADMIN.replace("${titleOfFile}", fileTitle); By ELEMENT_GROUP_MEMBERSHIP = By.linkText("manager"); String ELEMENT_GROUP_MEMBERSHIP_DISPLAY = "manager"; String ELEMENT_GROUP_TO_SELECT = "Platform/Content Management"; String ELEMENT_GROUP_DISPLAY = "platform/web-contributors"; info("-- Test case: Manage lock --"); // Go to Site Explorer nav.goToSiteExplorer(); // actBar.goToSitesManagement(); ecms.goToNode("intranet/documents"); // Create a new File actBar.goToAddNewContent(); cTemplate.createNewFile(fileTitle, content, fileTitle); // Lock this File cMenu.contextMenuAction(eLockedFile, cMenu.ELEMENT_CONTEXT_MENU_LOCK); click(cMenu.ELEMENT_DOCUMENT); waitForAndGetElement(elementLockedArticleIcon); // Open form to add permission for Users/Group (unlock node) // Add permission for group to unlock node ecMain.goToManageLockTab(); userGroup.selectGroup(ELEMENT_GROUP_TO_SELECT, true); click(ELEMENT_GROUP_MEMBERSHIP); // Groups are listed on the table waitForTextPresent(ELEMENT_GROUP_MEMBERSHIP_DISPLAY + ":/" + ELEMENT_GROUP_DISPLAY); // Login with user in the selected group and un lock that node driver.close(); driver = new FirefoxDriver(); driver.get(baseUrl); nav = new NavigationToolbar(driver); magAcc = new ManageAccount(driver); ecMain = new ECMainFunction(driver); adminPer = new Permission(driver); cMenu = new ContextMenu(driver); ecms = new EcmsBase(driver); magAcc.signIn("mary", "gtn"); ecMain.goToLockedTab(); click(ecMain.ELEMENT_UNLOCK_NODE.replace("${lockedNode}", fileTitle)); waitForTextNotPresent(fileTitle); // Admin re-LogIn and Delete Permission... magAcc.signOut(); magAcc.signIn(DATA_USER, DATA_PASS); ecMain.goToManageLockTab(); click( adminPer.ELEMENT_DELETE_SELECTED_GROUP.replace("${selectedGroup}", ELEMENT_GROUP_DISPLAY)); waitForTextNotPresent(ELEMENT_GROUP_MEMBERSHIP_DISPLAY + ":/" + ELEMENT_GROUP_DISPLAY); // Restore data nav.goToSiteExplorer(); ecms.goToNode("intranet/documents"); cMenu.deleteDocument(eLockedFile); }
/** * Add target group for a space when create new space * * @param groupPath * @param childGroupName */ public void addUserGroupToInvite(String groupPath, String childGroupName) { click(ELEMENT_USER_GROUP_CHECKBOX); userGroup.selectGroup(groupPath); click(By.linkText(childGroupName)); }