Java tutorial
/* * 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.test.ui.invitation.elements; import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.WebDriverException; import org.openqa.selenium.WebElement; import org.xwiki.test.ui.framework.elements.BasePage; /** * Represents the actions possible by guests on the invitation application. * * @version $Id: 1eebc42a5a43114cefb024f8cba309bf90782851 $ * @since 2.4M2 */ public class InvitationGuestActionsPage extends BasePage { public static enum Action { // Accept is null because the user is forwarded to RegisterPage, decline is null because it includes the name // of the sender. ACCEPT(null), DECLINE(null), REPORT("Note to the administrator who investigates this report (optional)"); public final String label; private Action(String label) { this.label = label; } } private final InvitationActionConfirmationElement confirm; public InvitationGuestActionsPage(String messageContent, Action action) { confirm = new InvitationActionConfirmationElement(); int start = messageContent.indexOf(getUtil().getURL("Invitation", "InvitationGuestActions", "view", "doAction_" + action.toString().toLowerCase())); int end = messageContent.indexOf("\"", start); getDriver().get(messageContent.substring(start, end).replaceAll("&", "&")); // Make sure the right messages is displayed otherwise we can't continue. if (action.label != null && !confirm.getLabel().equals(action.label)) { throw new WebDriverException( "Not on correct page, expecting memo label to say \"" + action.label + "\""); } } // Constructor for when the page is manually accessed. public InvitationGuestActionsPage() { confirm = new InvitationActionConfirmationElement(); } /** This will fail if the action is accept because the user is redirected to a RegisterPage. */ public void setMemo(String memo) { confirm.setMemo(memo); } public String getMessage() { List<WebElement> elements = getDriver().findElements(By.id("invitation-action-message")); if (elements.size() > 0) { return elements.get(0).getText(); } // Returning null would lead to NPE when calling equals and we don't get the friendly test failure message. return ""; } /** This will fail if the action is accept because the user is redirected to a RegisterPage. */ /** Outputs the message given after clicking the confirm button. */ public String confirm() { confirm.confirm(); return getDriver().findElement(By.id("invitation-action-message")).getText(); } }