You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Selenium Users
Today I tried to run a Selenium Grid test to a remote computer, and was running into the following error in attempt to do so: "org.openqa.selenium.SessionNotCreatedException: Unable to create new service: ChromeDriverService" (for Chrome) or: "org.openqa.selenium.SessionNotCreatedException: Unable to create new service: GeckoDriverService" (for FireFox)
My chromedriver+geckodriver and browsers are up to date. When I set my hub and node on the same machine, the tests run fine. And this is my first attempt to run tests on a different machine other than my own. Any help would be much appreciated!
Cheers
experimental qa
unread,
Nov 18, 2017, 12:22:39 PM11/18/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Selenium Users
specify chrome driver path while starting node
e.g. java
-Dwebdriver.chrome.driver="C:\driver\chromedriver.exe" -jar
selenium-server-standalone-3.6.0.jar -role node -hub http://192.168.0.8:4444/grid/register
or simply keep all drivers(geckodriver.exe, chromedriver.exe, IEdriver.exe) and selenium standalone jar in same folder and start node.