grunt-protractor-runner
grunt-protractor-runner copied to clipboard
Does not work with Firefox - need to update plugin to use Selenium 2.43
Protractor does not work with Firefox version >= 32. This is because Firefox 32 is broken with selenium <= 2.42.2 (http://stackoverflow.com/questions/25676328/protractor-with-firefox-32-latest-browser-not-loading)
This plugin should be updated to grab and use at least selenium 2.43 when running the webdriver-manager-update script.
Thanks!
The latest protractor now has selenium 2.43, the dependancy in the package.json needs to be updated to the latest. I developed a work around on our build server to always update (npm install protractor) inside the grunt-protractor-runner directory so we always have the latest updates
I also have this issue. I guess I'll just skip using this grunt plugin for now and run protractor through a grunt terminal plugin.
Currently this plugin specifies "protractor": "^1.0.0" as dependency. It installs the latest version of protractor which is v1.3.1. I've tried running its webdriver-manager update and it installs selenium-server-standalone-2.43.1.jar. How do I help you?