com.codenvy.ide.test.UITestsRunner.java Source code

Java tutorial

Introduction

Here is the source code for com.codenvy.ide.test.UITestsRunner.java

Source

/*
 * Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
 *
 * Licensed 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.
 */
package com.codenvy.ide.test;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.PageFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

import com.codenvy.ide.shared.GWTIDConstants;

public class UITestsRunner {

    private static Logger logger = LoggerFactory.getLogger(AboutDialogOpen.class);

    static WebDriver driver;
    AboutDialogOpen aboutDialogOpen;
    NewWSO2AppServerProjectCreation createNewProject;

    @BeforeClass
    public void openBrowser() throws InterruptedException {
        System.setProperty("webdriver.firefox.profile", "default");
        // Initialize web driver
        driver = new FirefoxDriver();
        // Allows WebDriver to poll the DOM for a certain duration until the
        // elements load
        driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);
        // Navigates to the web page
        driver.get(GWTIDConstants.WEB_APP_URL);
        // Initialize elements to be used
        aboutDialogOpen = PageFactory.initElements(driver, AboutDialogOpen.class);
        createNewProject = PageFactory.initElements(driver, NewWSO2AppServerProjectCreation.class);
    }

    @Test(description = "Get about Developer Studio")
    public void AboutDevStudio() {
        try {
            aboutDialogOpen.selectWSO2DevStudioMenu();// test the about wizard
            createNewProject.createNewWSO2AppServerProject();// test the new project creation wizard for All WSO2 Application Server Project Types

        } catch (Exception e) {
            logger.error("error occurred in running the tests for app server", e);
        }
    }

    @AfterClass
    public void closeBrowser() {
        driver.quit();
    }
}