Created
February 13, 2017 19:59
-
-
Save eduardojmatos/ce5c40731118939ebeb324820d48bc08 to your computer and use it in GitHub Desktop.
geckodriver on linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /bin | |
# Check on https://github.com/mozilla/geckodriver/releases for the latest release | |
wget https://github.com/mozilla/geckodriver/releases/download/v0.14.0/geckodriver-v0.14.0-linux64.tar.gz | |
tar -xvzf geckodriver-v0.14.0-linux64.tar.gz | |
rm geckodriver-v0.14.0-linux64.tar.gz | |
chmod +x geckodriver | |
cp geckodriver wires | |
export PATH=$PATH:/bin/wires | |
export PATH=$PATH:/bin/geckodriver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment