You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I used webdriver-manager to download the latest version of the selenium server. In my protractor.conf.js I specify seleniumServerJar so that protractor would take care of starting it up and shutting it down. Then, when running the tests, I started getting a timeout when starting the selenium server.
Digging into protractor's code, I found that protractor is only accounting for the happy path when running java -jar .... It turns out that the selenium server jar that was downloaded with webdriver-manager got corrupted somehow (during download, probably) and protractor didn't know about that.
My suggestion here is to also consider this scenario, as I spent an awful lot of time to figure this out.