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

geb.driver.BrowserStackDriverFactory.groovy Maven / Gradle / Ivy

/*
 * Copyright 2014 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package geb.driver

import com.google.common.collect.ImmutableMap
import org.openqa.selenium.WebDriver
import org.openqa.selenium.remote.DesiredCapabilities

class BrowserStackDriverFactory extends CloudDriverFactory {

    public static final String LOCAL_IDENTIFIER_CAPABILITY = "bstack:options.localIdentifier"

    @Override
    String assembleProviderUrl(String username, String password) {
        "https://$username:[email protected]/wd/hub"
    }

    WebDriver create(Map additionalCapabilities = [:]) {
        def specification = System.getProperty("geb.browserstack.browser")
        def user = System.getenv("GEB_BROWSERSTACK_USERNAME")
        def key = System.getenv("GEB_BROWSERSTACK_AUTHKEY")
        create(specification, user, key, additionalCapabilities)
    }

    WebDriver create(String specification, String username, String password, String localId, Map capabilities = [:]) {
        def mergedCapabilities = ImmutableMap.builder().putAll(capabilities).put(LOCAL_IDENTIFIER_CAPABILITY, localId).build()
        create(specification, username, password, mergedCapabilities)
    }

    @Override
    protected void configureCapabilities(String username, String key, DesiredCapabilities desiredCapabilities) {
        desiredCapabilities.setCapability("bstack:options.local", "true")
        def tunnelId = System.getenv("GEB_BROWSERSTACK_LOCALID")
        if (tunnelId) {
            desiredCapabilities.setCapability(LOCAL_IDENTIFIER_CAPABILITY, tunnelId)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy