001/*
002 * (C) Copyright 2016 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Anahide Tchertchian
018 */
019package org.nuxeo.functionaltests.pages;
020
021import org.nuxeo.functionaltests.AjaxRequestManager;
022import org.nuxeo.functionaltests.Locator;
023import org.nuxeo.functionaltests.Required;
024import org.nuxeo.functionaltests.pages.admincenter.usermanagement.GroupsTabSubPage;
025import org.nuxeo.functionaltests.pages.admincenter.usermanagement.UsersTabSubPage;
026import org.openqa.selenium.WebDriver;
027import org.openqa.selenium.WebElement;
028import org.openqa.selenium.support.FindBy;
029
030/**
031 * Users & Groups page visible in "Home" main tab.
032 *
033 * @since 8.3
034 */
035public class UsersGroupsHomePage extends HomePage {
036
037    @Required
038    @FindBy(id = "nxw_UsersHome_form:nxw_UsersHome")
039    public WebElement usersTabLink;
040
041    @Required
042    @FindBy(id = "nxw_GroupsHome_form:nxw_GroupsHome")
043    public WebElement groupsTabLink;
044
045    public UsersGroupsHomePage(WebDriver driver) {
046        super(driver);
047    }
048
049    public UsersTabSubPage getUsersTab() {
050        AjaxRequestManager arm = new AjaxRequestManager(driver);
051        arm.begin();
052        Locator.waitUntilEnabledAndClick(usersTabLink);
053        arm.end();
054        return asPage(UsersTabSubPage.class);
055    }
056
057    public GroupsTabSubPage getGroupsTab() {
058        AjaxRequestManager arm = new AjaxRequestManager(driver);
059        arm.begin();
060        Locator.waitUntilEnabledAndClick(groupsTabLink);
061        arm.end();
062        return asPage(GroupsTabSubPage.class);
063    }
064
065}