Package org.openqa.selenium.internal

Examples of org.openqa.selenium.internal.BuildInfo


     * Get the expected Selenium client version based on the current server version. Used when requesting drivers from
     * Sauce.
     */
    public static String getSeleniumClientVersion() {
        if (SELENIUM_VERSION == null) {
            String version = new BuildInfo().getReleaseLabel();
            if (version.matches("^\\d+\\.\\d+\\.\\d+$")) {
                SELENIUM_VERSION = version;
            } else {
                try {
                    Properties p = new Properties();
View Full Code Here

TOP

Related Classes of org.openqa.selenium.internal.BuildInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.