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

jscover.maven.WebDriverRunner Maven / Gradle / Ivy

The newest version!
package jscover.maven;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.openqa.selenium.WebDriver;

import java.util.List;

public interface WebDriverRunner {
    void setTimeOutSeconds(int timeOutSeconds);
    void waitForTestsToComplete(WebDriver webClient) throws MojoExecutionException;
    void verifyTestsPassed(WebDriver webClient) throws MojoFailureException;
    List getFailures(WebDriver webClient);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy