001/*
002 * (C) Copyright 2015 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl-2.1.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nelson Silva <nsilva@nuxeo.com>
016 */
017package org.nuxeo.functionaltests.pages.admincenter.activity;
018
019import org.nuxeo.functionaltests.Required;
020import org.nuxeo.functionaltests.pages.admincenter.AdminCenterBasePage;
021import org.openqa.selenium.WebDriver;
022import org.openqa.selenium.WebElement;
023import org.openqa.selenium.support.FindBy;
024
025/**
026 * @since 7.10
027 */
028public class ActivityPage extends AdminCenterBasePage {
029
030    @Required
031    @FindBy(linkText = "Repository Analytics")
032    WebElement repositoryAnalytics;
033
034    @Required
035    @FindBy(linkText = "Search Analytics")
036    WebElement searchAnalytics;
037
038    public ActivityPage(WebDriver driver) {
039        super(driver);
040    }
041
042    public RepositoryAnalyticsPage getRepositoryAnalyticsPage() {
043        repositoryAnalytics.click();
044        return asPage(RepositoryAnalyticsPage.class);
045    }
046
047    public SearchAnalyticsPage getSearchAnalyticsPage() {
048        searchAnalytics.click();
049        return asPage(SearchAnalyticsPage.class);
050    }
051}