Skip to content

Instantly share code, notes, and snippets.

@krmahadevan
Last active May 6, 2020 16:26
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save krmahadevan/1106418 to your computer and use it in GitHub Desktop.
Save krmahadevan/1106418 to your computer and use it in GitHub Desktop.
A JSON configuration file that can be used to spawn a webdriver node.
{
"capabilities":
[
{
"browserName":"firefox",
"acceptSslCerts":true,
"javascriptEnabled":true,
"takesScreenshot":true,
"firefox_profile":"",
"maxInstances":5
},
{
"browserName":"chrome",
"maxInstances":5
},
{
"browserName":"internet explorer",
"platform":"WINDOWS"
}
],
"configuration":
{
"cleanUpCycle":2000,
"timeout":30000,
"proxy":"org.openqa.grid.selenium.proxy.WebDriverRemoteProxy",
"maxSession":5,
"port": 5555,
"host": ip,
"register": true,
"hubPort" : 4444
}
}
@krbalaji77
Copy link

Hi Krishnan,
what does the port in the configuration section specify. The way you have used it in the batch file example... the nodes have their own ports in 5556 and 5557 ...so where does the 5555 port come in?
Thanks
Balaji

@rgustavsson
Copy link

The 5555 port represents the webdriver hub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment