File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,19 @@ Run an example test in Demo Mode: (highlight assertions)
25
25
``` bash
26
26
pytest my_first_test.py --demo
27
27
```
28
- <img src =" https://cdn2.hubspot.net/hubfs/100006/images/my_first_test_gif.gif " title =" SeleniumBase " /><br />
28
+ <img src =" https://cdn2.hubspot.net/hubfs/100006/images/my_first_test_gif.gif " title =" SeleniumBase Demo Mode " /><br />
29
29
30
30
Run an example test in Headless Mode: (invisible browser)
31
31
``` bash
32
32
pytest my_first_test.py --headless
33
33
```
34
34
35
+ Run an example test using Chrome's mobile device emulator: (default settings)
36
+ ``` bash
37
+ pytest test_swag_labs.py --mobile
38
+ ```
39
+ <img src =" https://cdn2.hubspot.net/hubfs/100006/images/swag_mobile.gif " title =" SeleniumBase Mobile Mode " /><br />
40
+
35
41
Run tests with verbose output: (includes more details)
36
42
``` bash
37
43
pytest test_suite.py -v
@@ -57,11 +63,6 @@ Run a failing test: (See the ``latest_logs/`` folder for logs and screenshots)
57
63
pytest test_fail.py
58
64
```
59
65
60
- Run an example test using Chrome's mobile device emulator: (default settings)
61
- ``` bash
62
- pytest test_swag_labs.py --mobile
63
- ```
64
-
65
66
Run a failing test with Debug-mode enabled: (`` pdb `` activates on failures)
66
67
``` bash
67
68
pytest test_fail.py --pdb -s
You can’t perform that action at this time.
0 commit comments