Skip to content

Commit 1a04bff

Browse files
committed
Update the ReadMe
1 parent c308389 commit 1a04bff

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,16 @@ For a full list of SeleniumBase features, [Click Here](https://github.com/seleni
126126

127127
**Here's how to run the example script on various web browsers:**
128128

129-
(NOTE: You can interchange **pytest** with **nosetests** at anytime.)
129+
First, install a web driver for each web browser you intend to use:
130+
```
131+
seleniumbase install chromedriver
132+
seleniumbase install geckodriver
133+
seleniumbase install edgedriver
134+
seleniumbase install iedriver
135+
seleniumbase install operadriver
136+
```
137+
138+
Next, choose between **pytest** and **nosetests** test runners. (<i>Interchangeable</i>)
130139
```
131140
cd examples/
132141
@@ -136,7 +145,8 @@ nosetests my_first_test.py --browser=firefox
136145
```
137146
(<i>If no browser is specified, Chrome is used by default.</i>)
138147

139-
<a id="seleniumbase_demo_mode"></a>
148+
<a id="seleniumbase_demo_mode"></a> **Use Demo Mode to help you see what tests are asserting.**
149+
140150
If the example test is moving too fast for your eyes, you can run it in **Demo Mode** by adding ``--demo_mode`` on the command line, which pauses the browser briefly between actions, highlights page elements being acted on, and lets you know what test assertions are happening in real time:
141151

142152
```

0 commit comments

Comments
 (0)