001/*
002 * (C) Copyright 2014 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 *     <a href="mailto:grenard@nuxeo.com">Guillaume</a>
016 */
017package org.nuxeo.functionaltests.pages.search;
018
019import org.nuxeo.functionaltests.Required;
020import org.nuxeo.functionaltests.pages.AbstractPage;
021import org.openqa.selenium.WebDriver;
022import org.openqa.selenium.WebElement;
023import org.openqa.selenium.support.FindBy;
024
025/**
026 * @since 6.0
027 */
028public abstract class AbstractSearchSubPage extends AbstractPage {
029
030    @Required
031    @FindBy(id = "nxl_gridSearchLayout:nxw_searchLayout_form:nxw_searchActions_clearSearch")
032    public WebElement clearButton;
033
034    @Required
035    @FindBy(id = "nxl_gridSearchLayout:nxw_searchLayout_form:nxw_searchActions_submitSearch")
036    public WebElement filterButton;
037
038    public AbstractSearchSubPage(WebDriver driver) {
039        super(driver);
040    }
041
042    public SearchPage filter() {
043        filterButton.click();
044        return asPage(SearchPage.class);
045    }
046
047}