Install Latest Version of Firefox on Travis And Run with Protractor
Travis installs Firefox 31.0esr by default, but we want to always use the latest version. The reference here says it should be pretty straight forward, but it doesn't seem to actually install, rather it just seems to download the tar file. Protractor still uses Firefox version 31.0esr when it runs. travis.yml addons: firefox: "latest" protractor.conf.js capabilities: { 'browserName': 'firefox' } Logs: Initial Firefox install still happens: [34m[1mInstalled Firefox version[0m firefox 31.0esr ... the addon section kicks in and downloads the file fine, before the before_install section as