vagrant-selenium
vagrant-selenium copied to clipboard
Firefox 47.0
Unfortunately, there is a new Firefox version (47.0) that is incompatible with this selenium-server. If you installed this VM after 28th June (since the script does sudo apt-get update) you will get Firefox 47.0 and it crashed the Selenium WebDriver. Therefore, you must downgrade it by doing (inside vagrant-selenium VM):
sudo apt-get purge firefox
cd /usr/local
sudo wget http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/46.0.1/linux-x86_64/en-US/firefox-46.0.1.tar.bz2
sudo tar xvjf firefox-46.0.1.tar.bz2
sudo ln -s /usr/local/firefox/firefox /usr/bin/firefox
(Or you can change the script.sh after cloning and before vagrant up to take this into consideration)
Hope to help.
Kind regards,
Andre