Download Chrome Driver First (the installation of Firefox Driver is the same as this step)
Link:
Http://chromedriver.storage.googleapis.com/index.html
Next, on the console (terminal), manipulate the instructions for the red font:
sudo apt-get install unzip
- Assuming you ' re running a 64-bit OS, download the latest version of Chromedriver from their website
wget -N http://chromedriver.storage.googleapis.com/2.10/chromedriver_linux64.zip -P ~/Downloads
unzip ~/Downloads/chromedriver_linux64.zip -d ~/Downloads
- Make the file you downloaded executable, and move it to
/usr/local/share
chmod +x ~/Downloads/chromedriver
sudo mv -f ~/Downloads/chromedriver /usr/local/share/chromedriver
- Also, create symlinks to the Chromedriver. Cucumber would look for the drivers in
/usr/bin/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver
Install Chrome Driver and Firefox Driver on Ubuntu