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

jscover.maven.WebDriverRunnerBase Maven / Gradle / Ivy

The newest version!
package jscover.maven;

import org.apache.maven.plugin.logging.Log;
import org.apache.maven.plugin.logging.SystemStreamLog;

public abstract class WebDriverRunnerBase implements WebDriverRunner {
    protected Log log = new SystemStreamLog();
    protected int timeOutSeconds = 1;

    public void setTimeOutSeconds(int timeOutSeconds) {
        this.timeOutSeconds = timeOutSeconds;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy