You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run a failing test: (See the ``latest_logs/`` folder afterwards for logs and screenshots)
49
54
```bash
50
-
pytest test_fail.py --browser=chrome
55
+
pytest test_fail.py
51
56
```
52
57
53
58
Run a failing test with Debugging-mode enabled: (If a test failure occurs, pdb activates)
54
59
```bash
55
-
pytest test_fail.py --browser=chrome --pdb -s
60
+
pytest test_fail.py --pdb -s
61
+
```
62
+
63
+
Run an example test suite that demonstrates the use of pytest markers:
64
+
```bash
65
+
pytest -v -m marker_test_suite
66
+
```
67
+
68
+
Run a test that demonstrates how to upload a file to a website:
69
+
```bash
70
+
pytest upload_file_test.py
56
71
```
57
72
58
73
For more advanced run commands, such as using a proxy server, see [../help_docs/customizing_test_runs.md](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/customizing_test_runs.md)
0 commit comments