/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.administration.test.po; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; /** * Represents the actions possible on the Annotations Administration Page. * * @version $Id: bc1fa2d7ea75ac0dcb4a8de50a3dd0e6a16bd97e $ * @since 4.2M1 */ public class AnnotationsPage extends AdministrationSectionPage { @FindBy(id = "AnnotationCode.AnnotationConfig_AnnotationCode.AnnotationConfig_0_activated") private WebElement annotationsAreActivatedRadioYes; @FindBy(id = "AnnotationCode.AnnotationConfig_AnnotationCode.AnnotationConfig_0_activated_false") private WebElement annotationsAreActivatedRadioNo; @FindBy(id = "AnnotationCode.AnnotationConfig_AnnotationCode.AnnotationConfig_0_displayed") private WebElement displayAnnotationsByDefaultRadioYes; @FindBy(id = "AnnotationCode.AnnotationConfig_AnnotationCode.AnnotationConfig_0_displayed_false") private WebElement displayAnnotationsByDefaultRadioNo; @FindBy(id = "AnnotationCode.AnnotationConfig_AnnotationCode.AnnotationConfig_0_displayHighlight") private WebElement displayAnnotationsHighlightByDefaultRadioYes; @FindBy(id = "AnnotationCode.AnnotationConfig_AnnotationCode.AnnotationConfig_0_displayHighlight_false") private WebElement displayAnnotationsHighlightByDefaultRadioNo; public static AnnotationsPage gotoPage() { getUtil().gotoPage("XWiki", "XWikiPreferences", "admin", "section=Annotations"); return new AnnotationsPage(); } public AnnotationsPage() { super("Annotations"); } public void activateAnnotations() { this.annotationsAreActivatedRadioYes.click(); } public void deactivateAnnotations() { this.annotationsAreActivatedRadioNo.click(); } public void displayAnnotationsByDefault() { this.displayAnnotationsByDefaultRadioYes.click(); } public void hideAnnotationsByDefault() { this.displayAnnotationsByDefaultRadioNo.click(); } public void displayAnnotationsHighlightByDefault() { this.displayAnnotationsHighlightByDefaultRadioYes.click(); } public void hideAnnotationsHighlightByDefault() { this.displayAnnotationsHighlightByDefaultRadioNo.click(); } }