Skip to content

Commit 66024a4

Browse files
committed
Update WebDriver installation ReadMe
1 parent 8cf50e4 commit 66024a4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

help_docs/webdriver_installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
## Installing Google Chromedriver, Firefox Geckodriver, and other drivers
22

33

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.
55

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.
77

88
* For Firefox, get [Geckodriver](https://github.com/mozilla/geckodriver/releases) on your System Path.
99

@@ -34,15 +34,15 @@ brew upgrade geckodriver
3434
Linux:
3535

3636
```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
3838
unzip chromedriver_linux64.zip
3939
mv chromedriver /usr/local/bin/
4040
chmod +x /usr/local/bin/chromedriver
4141
```
4242

4343
```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
4646
mv geckodriver /usr/local/bin/
4747
chmod +x /usr/local/bin/geckodriver
4848
```

0 commit comments

Comments
 (0)