@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
48 lines (43 loc) • 942 B
JavaScript
/**
* helper to detect the Selenium backend according to given capabilities
*/
let detectSeleniumBackend = function (capabilities) {
/**
* local Selenium server
*/
if (!capabilities.user || !capabilities.key) {
return {
host: '127.0.0.1',
port: 4444
}
}
/**
* browserstack
* e.g. zHcv9sZ39ip8ZPsxBVJ2
*/
if (capabilities.key.length === 20) {
return {
host: 'hub.browserstack.com',
port: 80
}
}
/**
* testingbot
* e.g. ec337d7b677720a4dde7bd72be0bfc67
*/
if (capabilities.key.length === 32) {
return {
host: 'hub.testingbot.com',
port: 80
}
}
/**
* Sauce Labs
* e.g. 50aa152c-1932-B2f0-9707-18z46q2n1mb0
*/
return {
host: 'ondemand.saucelabs.com',
port: 80
}
}
export default detectSeleniumBackend