Skip to content

Commit cf04a19

Browse files
committed
Add a "drivers" folder for storing web drivers
1 parent 827861c commit cf04a19

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

drivers/ReadMe.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### SeleniumBase web driver storage
2+
3+
* Usage:
4+
5+
```bash
6+
seleniumbase install chromedriver
7+
seleniumbase install geckodriver
8+
seleniumbase install edgedriver
9+
```
10+
11+
After running the commands above, web drivers will get downloaded into this folder. SeleniumBase will then use those drivers during test runs if present. (The drivers don't come with SeleniumBase by default.)
12+
13+
If the necessary driver is not found in this location while running tests, SeleniumBase will instead look for the driver on the System PATH. If the necessary driver is not on the System PATH either, you'll get errors.

drivers/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
'seleniumbase.masterqa',
4444
'seleniumbase.plugins',
4545
'console_scripts',
46+
'drivers',
4647
'integrations',
4748
'integrations.selenium_grid',
4849
'integrations.selenium_ide',

0 commit comments

Comments
 (0)