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

com.pojosontheweb.selenium.Browsr Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package com.pojosontheweb.selenium;

/**
 * Represents a supported browser.
 */
public enum Browsr {

    Chrome("chrome"),
    Firefox("firefox"),
    Safari("safari");

    /**
     * The value of the "webtests.browser" system property
     */
    private final String sysProp;

    Browsr(String sysProp) {
        this.sysProp = sysProp;
    }

    /**
     * Return the value of the "webtests.browser" system property
     */
    public String getSysProp() {
        return sysProp;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy