Skip to content

Commit 58fc78c

Browse files
committed
Update the ReadMe
1 parent 3f79788 commit 58fc78c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ SeleniumBase simplifies test automation with [WebDriver](https://docs.microsoft.
77
#### Quick start in a few steps: (requires [Python](https://www.python.org/downloads/))
88

99
```bash
10-
python -m pip install -U seleniumbase --no-cache-dir
10+
python -m pip install -U pip
11+
pip install -U seleniumbase --no-cache-dir
1112
seleniumbase install chromedriver
1213
seleniumbase mkdir browser_tests
1314
cd browser_tests
1415
pytest my_first_test.py --browser=chrome
1516
```
1617

17-
The ``seleniumbase mkdir [NAME]`` command creates a new folder with some sample tests you can run. If you wish to use a different browser, you can use ``seleniumbase install [DRIVER]`` with other drivers such as ``edgedriver`` (Microsoft Edge) or ``geckodriver`` (Firefox). Then use ``--browser=edge`` or ``--browser=firefox`` to run tests on that browser (assuming you already have that web browser installed). ``--browser=chrome`` is the default option if not specified.
18+
The ``seleniumbase mkdir [NAME]`` command creates a new folder with sample tests. To use a different browser other than Chrome, use ``seleniumbase install [DRIVER]`` with ``edgedriver`` (Microsoft Edge) or ``geckodriver`` (Firefox). Then you can use ``--browser=edge`` or ``--browser=firefox`` to run tests on those browsers. ``--browser=chrome`` is the default option.
1819

1920
**Slow-motion demo of [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py) running:**<br>
2021
![](https://cdn2.hubspot.net/hubfs/100006/images/sb_demo.gif "SeleniumBase")<br>
@@ -109,7 +110,7 @@ python setup.py develop
109110

110111
If you're installing SeleniumBase from the [Python Package Index](https://pypi.python.org/pypi/seleniumbase), use:
111112
```bash
112-
pip install --no-cache-dir seleniumbase --upgrade
113+
pip install -U seleniumbase --no-cache-dir
113114
```
114115

115116
If you're installing SeleniumBase directly from GitHub, use:

0 commit comments

Comments
 (0)