{
"browserstack": boolean,
"capabilities": object,
"seleniumURL": string
}
{
"id": string,
"capabilities": object
}
The WebDriver
can be reconstructed using:
const selenium = require("selenium-webdriver");
const seleniumHttp = require("selenium-webdriver/http");
const session = new selenium.Session(res.body.id, res.body.capabilities);
const client = Promise.resolve(seleniumURL)
.then(url => new seleniumHttp.HttpClient(url));
const executor = new seleniumHttp.Executor(client);
driver = new selenium.WebDriver(session, executor);
The host of the server (default: 0.0.0.0
)
The port of the server (default: 4445
)
The username of the Browserstack accout
The acess key of the Browserstack accout
This project is not intended as a secure proxy. Credentials and information may leak!