Skip to content

Commit 6972b97

Browse files
committed
Update Docs related to installation of web drivers
1 parent 5f8201f commit 6972b97

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

console_scripts/ReadMe.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ For running tests from the command line, [use **pytest** with SeleniumBase](http
88

99
* Usage:
1010
``seleniumbase install [DRIVER_NAME]``
11-
(Drivers: chromedriver, geckodriver, edgedriver)
11+
(Drivers: chromedriver, geckodriver, edgedriver,
12+
iedriver, operadriver)
1213

1314
* Example:
1415
``seleniumbase install chromedriver``
@@ -18,6 +19,8 @@ Installs the specified webdriver.
1819
(chromedriver is required for Google Chrome automation)
1920
(geckodriver is required for Mozilla Firefox automation)
2021
(edgedriver is required for Microsoft Edge automation)
22+
(iedriver is required for Internet Explorer automation)
23+
(operadriver is required for Opera Browser automation)
2124

2225
### mkdir
2326

console_scripts/sb_install.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
Installs the specified web driver.
33
44
Usage:
5-
seleniumbase install {chromedriver|geckodriver|edgedriver}
5+
seleniumbase install {chromedriver|geckodriver|edgedriver|
6+
iedriver|operadriver}
67
Output:
78
Installs the specified webdriver.
89
(chromedriver is required for Chrome automation)

help_docs/webdriver_installation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ To run web automation, you'll need to download a web driver for each browser you
77
seleniumbase install chromedriver
88
seleniumbase install geckodriver
99
seleniumbase install edgedriver
10+
seleniumbase install iedriver
11+
seleniumbase install operadriver
1012
```
1113

1214
If you plan on using the [Selenium Grid integration](https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/selenium_grid/ReadMe.md) (which allows for remote webdriver), you'll need to put the drivers on your System PATH. On a Mac 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)