|
1 | 1 | ## Installing Google Chromedriver, Firefox Geckodriver, and other drivers
|
2 | 2 |
|
3 | 3 |
|
4 |
| -To run automation on various web browsers, you'll need to download a driver file for each one and place it on your System **[PATH](http://java.com/en/download/help/path.xml)**. On a Mac, ``/usr/local/bin`` is a good spot. On Windows, make sure you set the System Path under Environment Variables to include the location where you placed the driver files: |
| 4 | +To run automation on various web browsers, you'll need to download a driver file for each one and place it on your System **[PATH](http://java.com/en/download/help/path.xml)**. On a Mac, ``/usr/local/bin`` is a good spot. On Windows, make sure you set the System Path under Environment Variables to include the location where you placed the driver files. You may want to download newer versions of drivers as they become available. |
5 | 5 |
|
6 |
| -* For Chrome, get [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) on your System Path. (**[Version 2.37](https://chromedriver.storage.googleapis.com/index.html?path=2.37/) or above is recommended!**) |
| 6 | +* For Chrome, get [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) on your System Path. |
7 | 7 |
|
8 | 8 | * For Firefox, get [Geckodriver](https://github.com/mozilla/geckodriver/releases) on your System Path.
|
9 | 9 |
|
@@ -34,15 +34,15 @@ brew upgrade geckodriver
|
34 | 34 | Linux:
|
35 | 35 |
|
36 | 36 | ```bash
|
37 |
| -wget http://chromedriver.storage.googleapis.com/2.36/chromedriver_linux64.zip |
| 37 | +wget http://chromedriver.storage.googleapis.com/2.37/chromedriver_linux64.zip |
38 | 38 | unzip chromedriver_linux64.zip
|
39 | 39 | mv chromedriver /usr/local/bin/
|
40 | 40 | chmod +x /usr/local/bin/chromedriver
|
41 | 41 | ```
|
42 | 42 |
|
43 | 43 | ```bash
|
44 |
| -wget https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v0.19.1-linux64.tar.gz |
45 |
| -tar xvfz geckodriver-v0.19.1-linux64.tar.gz |
| 44 | +wget https://github.com/mozilla/geckodriver/releases/download/v0.20.0/geckodriver-v0.20.0-linux64.tar.gz |
| 45 | +tar xvfz geckodriver-v0.20.0-linux64.tar.gz |
46 | 46 | mv geckodriver /usr/local/bin/
|
47 | 47 | chmod +x /usr/local/bin/geckodriver
|
48 | 48 | ```
|
|
0 commit comments