blob: 5bce387a385569f66a4ad277b663ff889f4b08f7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.selenium;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.Select;
import org.openqa.selenium.support.ui.WebDriverWait;
/**
* Abstract class holding functionality common to Selenium Page Objects
* used in Roller.
*/
public abstract class AbstractRollerPage {
protected WebDriver driver;
protected void verifyPageTitle(String waitForElementId, String pageTitle) {
WebDriverWait wait = new WebDriverWait(driver, 10);
wait.until( ExpectedConditions.visibilityOf( driver.findElement(By.id(waitForElementId))));
verifyPageTitle(pageTitle);
}
protected void verifyPageTitle(String pageTitle) {
if (!driver.getTitle().equals(pageTitle)) {
throw new IllegalStateException("This is not the " + pageTitle + ", current page is: " + driver.getTitle());
}
System.out.println("Verified page title: " + pageTitle);
}
/*
* Alternative method of identifying a page, by an HTML ID uniquely on it.
* Use when multiple views share the same page title. This method will require
* adding an id to an element specific to that page if one not already available.
*/
protected void verifyIdOnPage(String idOnPage) {
try {
WebElement div = driver.findElement(By.id(idOnPage));
} catch (NoSuchElementException e) {
throw new IllegalStateException("HTML ID: " + idOnPage + " not found.");
}
}
protected void setFieldValue(String fieldId, String value) {
WebElement field = driver.findElement(By.id(fieldId));
field.clear();
field.sendKeys(value);
}
protected void clickById(String buttonId) {
WebElement element = driver.findElement(By.id(buttonId));
element.click();
System.out.println("Element " + element.getTagName() + " id:" + element.getAttribute("id") + " clicked");
}
protected void clickByLinkText(String buttonText) {
WebElement element = driver.findElement(By.linkText(buttonText));
element.click();
System.out.println("Element " + element.getTagName() + " id:" + element.getAttribute("id") + " clicked");
}
protected String getTextByCSS(String cssSelector) {
return driver.findElement(By.cssSelector(cssSelector)).getText();
}
protected String getTextById(String fieldId) {
return driver.findElement(By.id(fieldId)).getText();
}
protected void selectOptionByVisibleText(String selectId, String visibleText) {
Select select = new Select(driver.findElement(By.id(selectId)));
select.selectByVisibleText(visibleText);
}
}