Skip to content

Commit f05a245

Browse files
committed
Update the ReadMe
1 parent 264a014 commit f05a245

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cd SeleniumBase
3939
pip install -r requirements.txt
4040
python setup.py develop
4141
```
42-
* ("``pip install -e .``" also works from the top-level SeleniumBase folder.)
42+
* "``pip install -e .``" also works from the top-level SeleniumBase folder.
4343

4444
You can also install a specific GitHub branch of SeleniumBase:
4545
```
@@ -52,17 +52,18 @@ SeleniumBase can download a web driver to the [seleniumbase/drivers](https://git
5252
```
5353
seleniumbase install chromedriver
5454
```
55-
* (You need a different web driver for each web browser you want to run automation on: ``chromedriver`` for Chrome, ``edgedriver`` for Edge, ``geckodriver`` for Firefox, ``operadriver`` for Opera, and ``iedriver`` for Internet Explorer.)
55+
* You need a different web driver for each web browser you want to run automation on: ``chromedriver`` for Chrome, ``edgedriver`` for Edge, ``geckodriver`` for Firefox, ``operadriver`` for Opera, and ``iedriver`` for Internet Explorer.
5656

5757
### <img src="https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png" title="SeleniumBase" height="32"> Run a test on Chrome:
5858
```
5959
cd examples
6060
pytest my_first_test.py --browser=chrome
6161
```
62-
* (Chrome is the default browser if not specified with ``--browser``)
62+
* Chrome is the default browser if not specified with ``--browser=BROWSER``.
63+
* You MUST add ``--headless`` for your tests to run on a headless machine (No GUI). You can also run in headless mode on any machine.
6364

6465
**Check out [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py) to see what a simple test looks like:**
65-
* (<i>By default, [CSS Selectors](https://www.w3schools.com/cssref/css_selectors.asp) are used for finding page elements.</i>)
66+
* <i>By default, [CSS Selectors](https://www.w3schools.com/cssref/css_selectors.asp) are used for finding page elements.</i>
6667

6768
## <img src="https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png" title="SeleniumBase" height="32"> Learn More:
6869

0 commit comments

Comments
 (0)