1
driver = new AndroidDriver(new URL("http://127.0.0.1:"+port+"/wd/hub"), capabilities);
undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
Pranay Roy
  • 21
  • 1
  • 3

1 Answers1

1

wd is the short form of WebDriver

hub refers to Selenium Grid configuration where the two components are:

  • Selenium Grid Hub (is commonly termed as hub)
  • Selenium Grid Node (is commonly termed as node)
  • wd/hub is the part of the uri through which the node communicates with the hub

Here you can find a detailed discussion on selenium grid listening on node port instead of hub port

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352