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

org.jspringbot.keyword.selenium.RemoteWebDriverFactory Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package org.jspringbot.keyword.selenium;

import org.openqa.selenium.Capabilities;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.remote.Augmenter;
import org.openqa.selenium.remote.RemoteWebDriver;

import java.net.URL;

public class RemoteWebDriverFactory {

    public static WebDriver create(URL remoteHost, Capabilities capabilities) {
        RemoteWebDriver webDriver = new RemoteWebDriver(remoteHost, capabilities);

        return new Augmenter().augment(webDriver);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy