org.olat.selenium.page.course.CourseWizardPage.java Source code

Java tutorial

Introduction

Here is the source code for org.olat.selenium.page.course.CourseWizardPage.java

Source

/**
 * <a href="http://www.openolat.org">
 * OpenOLAT - Online Learning and Training</a><br>
 * <p>
 * Licensed under the Apache License, Version 2.0 (the "License"); <br>
 * you may not use this file except in compliance with the License.<br>
 * You may obtain a copy of the License at the
 * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a>
 * <p>
 * Unless required by applicable law or agreed to in writing,<br>
 * software distributed under the License is distributed on an "AS IS" BASIS, <br>
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
 * See the License for the specific language governing permissions and <br>
 * limitations under the License.
 * <p>
 * Initial code contributed and copyrighted by<br>
 * frentix GmbH, http://www.frentix.com
 * <p>
 */
package org.olat.selenium.page.course;

import java.util.List;

import org.jboss.arquillian.drone.api.annotation.Drone;
import org.jboss.arquillian.graphene.Graphene;
import org.junit.Assert;
import org.olat.selenium.page.graphene.OOGraphene;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

/**
 * 
 * Drive the wizard to create a course.
 * 
 * Initial date: 04.07.2014<br>
 * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com
 *
 */
public class CourseWizardPage {

    public static final By nextBy = By.className("o_wizard_button_next");
    public static final By finishBy = By.className("o_wizard_button_finish");

    @Drone
    private WebDriver browser;

    public static CourseWizardPage getWizard(WebDriver browser) {
        By modalBy = By.className("modal-content");
        WebElement modal = browser.findElement(modalBy);
        return Graphene.createPageFragment(CourseWizardPage.class, modal);
    }

    /**
     * Next
     * @return this
     */
    public CourseWizardPage next() {
        WebElement next = browser.findElement(nextBy);
        Assert.assertTrue(next.isDisplayed());
        Assert.assertTrue(next.isEnabled());
        next.click();
        OOGraphene.waitBusy(browser);
        OOGraphene.closeBlueMessageWindow(browser);
        return this;
    }

    /**
     * Finish the wizard
     * @return this
     */
    public CourseWizardPage finish() {
        WebElement finish = browser.findElement(finishBy);
        Assert.assertTrue(finish.isDisplayed());
        Assert.assertTrue(finish.isEnabled());
        finish.click();
        OOGraphene.waitBusy(browser);
        OOGraphene.closeBlueMessageWindow(browser);
        return this;
    }

    public CourseWizardPage selectAllCourseElements() {
        By checkAllBy = By.cssSelector("div.modal div.form-group input[type='checkbox']");
        List<WebElement> checkAll = browser.findElements(checkAllBy);
        Assert.assertFalse(checkAll.isEmpty());
        for (WebElement check : checkAll) {
            check.click();
            OOGraphene.waitBusy(browser);
        }

        return this;
    }
}