class HttpClient

All implemented interfaces:
webdriver.http.Client

A webdriver.http.Client implementation using Node's built-in http module.

new HttpClient(serverUrl, opt_agent)

Parameters
serverUrlstring

URL for the WebDriver server to send commands to.

opt_agent?http.Agent=

The agent to use for each request. Defaults to http.globalAgent.

Instance Methods

send(httpRequest, callback)code ยป

Specified by: webdriver.http.Client

Parameters
httpRequestwebdriver.http.Request
callbackfunction(Error, webdriver.http.Response=): ?