Skip to content

Instantly share code, notes, and snippets.

@VanDavv
Created June 16, 2017 06:33
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VanDavv/e7c950f1a9b7e21d4b079f068d0ead69 to your computer and use it in GitHub Desktop.
Save VanDavv/e7c950f1a9b7e21d4b079f068d0ead69 to your computer and use it in GitHub Desktop.
Script to download latest chrome driver
#!/bin/bash
PLATFORM=linux64 # Change this line if You're using other platform
VERSION=$(curl http://chromedriver.storage.googleapis.com/LATEST_RELEASE)
curl http://chromedriver.storage.googleapis.com/$VERSION/chromedriver_$PLATFORM.zip -LOk
unzip chromedriver_*
rm chromedriver_*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment