Created
February 1, 2018 23:43
-
-
Save Sydney-o9/e0c104f43ebc418bc7456b11ed21579d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Create folders | |
sudo mkdir -p /usr/local/selenium/bin /usr/local/selenium/drivers | |
# Donwload latest selenium server .jar file | |
cd /usr/local/selenium/bin | |
wget http://selenium-release.storage.googleapis.com/3.8/selenium-server-standalone-3.8.1.jar | |
# Download latest chromedriver | |
cd /usr/local/selenium/drivers | |
wget https://chromedriver.storage.googleapis.com/2.35/chromedriver_mac64.zip | |
unzip -a chromedriver_mac64.zip | |
# Download latest geckodriver | |
wget https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v0.19.1-macos.tar.gz | |
tar -zxvf geckodriver-v0.19.1-macos.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment