Open unaccomplished opened 6 years ago
I am also facing a similar kind of issue..While trying to run my test it is exiting with error code 135
Error code: 135 [11:50:19] E/local - Error message: No selenium server jar found at C:\Repo\theseus-qa-e2e-tests-simplified\node_modules\protractor\node_modules\webdriver-manager\selenium\selenium-server-standalone-3.8.1.jar. Run 'webdriver-manager update' to download binaries. [11:50:19] E/local - Error: No selenium server jar found at C:\Repo\theseus-qa-e2e-tests-simplified\node_modules\protractor\node_modules\webdriver-manager\selenium\selenium-server-standalone-3.8.1.jar. Run 'webdriver-manager update' to download binaries.
As per the error when I try to update webdriver.It is giving the below error
events.js:187 throw er; // Unhandled 'error' event
Error: getaddrinfo ENOTFOUND chromedriver.storage.googleapis.com
errno: 'ENOTFOUND', code: 'ENOTFOUND', syscall: 'getaddrinfo', hostname: 'chromedriver.storage.googleapis.com'
Tried many ways going through many similar kind of issues,but still it is the same
This is my first time writing a bug/issue, so please let me know if I missed anything or posting this incorrectly. In preparation for my first PR, I followed the instructions in https://github.com/angular-ui/ui-grid/blob/master/FIRST_TIMER.md and got to the
grunt test:e2e
command. I'm getting error code 135:I tried running
webdriver-manager update
, but the command was not found. Then I googled and triednode_modules/protractor/bin/webdriver-manager update
(from here: https://github.com/angular/protractor/issues/3268) which gave me this in my terminal:However, running
grunt test:e2e
afterwards still gives me the same errors as above.I also tried this command
node ./node_modules/grunt-protractor-runner/scripts/webdriver-manager-update
which I found from here: https://github.com/teerapap/grunt-protractor-runner/issues/176. This is what it gave me in my terminal:Running
grunt test:e2e
afterwards still results in the same errors I posted above.I suspect the error is because I have a different version of
selenium-server-standalone-3.14.0.jar
than the e2e test is looking for (selenium-server-standalone-3.11.0.jar
). I couldn't find any similar bugs already reported or any documentation about this error. I am working in OS X 10.11.6. I cloned the project only a week ago, so it should be the latest version of the grid.