Skip to content

Commit f1fd3ff

Browse files
committed
Update a ReadMe
1 parent 963e288 commit f1fd3ff

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

help_docs/webdriver_installation.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,25 @@
55
To run web automation, you'll need webdrivers for each browser you plan on using. Here are some commands that'll automatically download the driver you need into the SeleniumBase ``drivers`` folder once you've installed SeleniumBase:
66

77
```bash
8-
seleniumbase install chromedriver
9-
seleniumbase install geckodriver
10-
seleniumbase install edgedriver
11-
seleniumbase install iedriver
12-
seleniumbase install operadriver
8+
sbase install chromedriver
9+
sbase install geckodriver
10+
sbase install edgedriver
11+
sbase install iedriver
12+
sbase install operadriver
1313
```
14+
1415
* If you have the latest version of Chrome installed, get the latest chromedriver (<i>otherwise it defaults to chromedriver 2.44 for compatibility reasons</i>):
16+
1517
```bash
16-
seleniumbase install chromedriver latest
18+
sbase install chromedriver latest
1719
```
20+
1821
* You can also install a specific version of chromedriver for a specific version of Chrome:
22+
1923
```bash
20-
seleniumbase install chromedriver 83.0.4103.39
24+
sbase install chromedriver 88.0.4324.96
25+
26+
sbase install chromedriver 88
2127
```
2228

2329
If you plan on using the [Selenium Grid integration](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/utilities/selenium_grid/ReadMe.md) (which allows for remote webdriver), you'll need to put the drivers on your System PATH. On macOS and Linux, ``/usr/local/bin`` is a good PATH spot. On Windows, you may need to set the System PATH under Environment Variables to include the location where you placed the driver files. As a shortcut, you could place the driver files into your Python ``Scripts/`` folder in the location where you have Python installed, which should already be on your System PATH.

0 commit comments

Comments
 (0)