/* * 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.appwithinminutes.test.po; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.NotFoundException; import org.openqa.selenium.StaleElementReferenceException; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.interactions.Actions; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.ui.ExpectedCondition; /** * Represents the actions available when editing the application class. This is also the second step of the App Within * Minutes wizard, in which the application structure defined. * * @version $Id: 120056a05d516f758e77f5c0e3ad28e33356d26b $ * @since 4.2M1 */ public class ApplicationClassEditPage extends ApplicationEditPage { @FindBy(id = "palette") private WebElement palette; @FindBy(id = "fields") private WebElement fields; @FindBy(id = "canvas") private WebElement fieldsCanvas; @FindBy(id = "updateClassSheet") private WebElement updateClassSheetCheckbox; /** * Clicks on the Next Step button. * * @return the page that represents the next step of the App Within Minutes wizard */ public ApplicationTemplateProviderEditPage clickNextStep() { nextStepButton.click(); return new ApplicationTemplateProviderEditPage(); } /** * Clicks on the Previous Step button. * * @return the page that represents the previous step of the App Within Minutes wizard */ public ApplicationCreatePage clickPreviousStep() { previousStepButton.click(); return new ApplicationCreatePage(); } /** * @return {@code true} if the Previous Step button is present, {@code false} otherwise */ public boolean hasPreviousStep() { return getDriver().findElementsWithoutWaiting(By.linkText("Previous Step")).size() > 0; } /** * Drags a field of the specified type from the field palette to the field canvas. * * @param fieldType the type of field to add, as displayed on the field palette */ public ClassFieldEditPane addField(String fieldType) { String fieldXPath = "//span[@class = 'field' and normalize-space(.) = '%s']"; WebElement field = palette.findElement(By.xpath(String.format(fieldXPath, fieldType))); // NOTE: We scroll the page up because the drag&drop fails sometimes if the dragged field and the canvas (drop // target) are not fully visible. See https://code.google.com/p/selenium/issues/detail?id=3075 . palette.sendKeys(Keys.HOME); new Actions(getDriver()).dragAndDrop(field, fieldsCanvas).perform(); final WebElement addedField = fieldsCanvas.findElement(By.xpath("./ul[@id='fields']/li[last()]")); getDriver().waitUntilCondition(new ExpectedCondition<Boolean>() { @Override public Boolean apply(WebDriver driver) { try { return !addedField.getAttribute("class").contains("loading"); } catch (NotFoundException e) { return false; } catch (StaleElementReferenceException e) { // The element was removed from DOM in the meantime return false; } } }); return new ClassFieldEditPane(addedField.getAttribute("id").substring("field-".length())); } /** * Moves the class field specified by the first parameter before the class field specified by the second parameter * * @param fieldToMove the class field to be moved * @param beforeField the class field before which to insert the field being moved */ public void moveFieldBefore(String fieldToMove, String beforeField) { new ClassFieldEditPane(fieldToMove).dragTo(fieldsCanvas.findElement(By.id("field-" + beforeField)), 0, 0); } /** * Sets whether the class sheet should be updated or not. * * @param update {@code true} to update the class sheet, {@code false} otherwise */ public void setUpdateClassSheet(boolean update) { if (updateClassSheetCheckbox.isSelected() != update) { updateClassSheetCheckbox.click(); } } }