driver = new AndroidDriver(new URL("http://127.0.0.1:"+port+"/wd/hub"), capabilities);
Asked
Active
Viewed 2,569 times
1
undetected Selenium
- 151,581
- 34
- 225
- 281
Pranay Roy
- 21
- 1
- 3
1 Answers
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
- 151,581
- 34
- 225
- 281