All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.noraui.application.steps.IStep Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
/**
 * NoraUi is licensed under the license GNU AFFERO GENERAL PUBLIC LICENSE
 * 
 * @author Nicolas HALLOUIN
 * @author Stéphane GRILLON
 */
package com.github.noraui.application.steps;

import org.openqa.selenium.WebDriver;

import com.github.noraui.application.page.IPage;

public interface IStep {

    /**
     * checkStep call checkPage
     *
     * @param page
     *            is the target page
     */
    void checkStep(IPage page);

    /**
     * Quick getter to the global web driver
     * 
     * @return
     *         The global instance of web driver
     */
    WebDriver getDriver();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy