Example usage for org.openqa.selenium.remote.service DriverCommandExecutor DriverCommandExecutor

List of usage examples for org.openqa.selenium.remote.service DriverCommandExecutor DriverCommandExecutor

Introduction

In this page you can find the example usage for org.openqa.selenium.remote.service DriverCommandExecutor DriverCommandExecutor.

Prototype

public DriverCommandExecutor(DriverService service) 

Source Link

Document

Creates a new DriverCommandExecutor which will communicate with the driver as configured by the given service .

Usage

From source file:com.jaliansystems.customiSE.driver.CustomiSEDriver.java

License:Apache License

private void run(CustomiSEDriverService service, Capabilities capabilities) {
    setCommandExecutor(new DriverCommandExecutor(service));

    startSession(capabilities);
}

From source file:org.apache.nutch.protocol.webdriver.driver.NutchFirefoxDriver.java

License:Apache License

public NutchFirefoxDriver(DriverService driverService, Capabilities desiredCapabilities) {
    this(new DriverCommandExecutor(driverService), firefoxCapabilities(desiredCapabilities));
}