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.tabs;
018
019import java.util.List;
020
021import org.nuxeo.functionaltests.Required;
022import org.openqa.selenium.WebDriver;
023import org.openqa.selenium.WebElement;
024import org.openqa.selenium.support.FindBy;
025
026/**
027 * @since 5.9.3
028 */
029public class CollectionContentTabSubPage extends ContentTabSubPage {
030
031    @Required
032    @FindBy(id = "collection_content_contentview")
033    WebElement documentContentForm;
034
035    @FindBy(xpath = "//form[@id=\"collection_content_contentview\"]//tbody//tr")
036    List<WebElement> childDocumentRows;
037
038    public CollectionContentTabSubPage(final WebDriver driver) {
039        super(driver);
040    }
041
042    @Override
043    public List<WebElement> getChildDocumentRows() {
044        return childDocumentRows;
045    }
046
047}