Skip to content

Commit 951127c

Browse files
committed
Update the docs
1 parent 23a3e43 commit 951127c

File tree

2 files changed

+18
-20
lines changed

2 files changed

+18
-20
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_m.png" title="SeleniumBase" align="center" height="48">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
2-
3-
<b>Web Automation Made Easy and Reliable.</b>
1+
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/SeleniumBaseText_F.png" title="SeleniumBase" align="center" height="46">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
42

53
[<img src="https://img.shields.io/github/release/seleniumbase/SeleniumBase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/releases) [<img src="https://dev.azure.com/seleniumbase/seleniumbase/_apis/build/status/seleniumbase.SeleniumBase?branchName=master" alt=" " />](https://dev.azure.com/seleniumbase/seleniumbase/_build/latest?definitionId=1&branchName=master) [<img src="https://travis-ci.org/seleniumbase/SeleniumBase.svg?branch=master" alt=" " />](https://travis-ci.org/seleniumbase/SeleniumBase) [<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt=" " />](https://gitter.im/seleniumbase/SeleniumBase) [<img src="https://img.shields.io/badge/license-MIT-22BBCC.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/blob/master/LICENSE) [<img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/stargazers)
64

examples/ReadMe.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,88 +10,88 @@ During test failures, logs and screenshots from the most recent test run will ge
1010

1111
**Here are some example run commands to help get you started:**
1212

13-
* Run an example test in Chrome: (Default: ``--browser=chrome``)
13+
Run an example test in Chrome: (Default: ``--browser=chrome``)
1414
```bash
1515
pytest my_first_test.py
1616
```
1717

18-
* Run an example test in Firefox:
18+
Run an example test in Firefox:
1919
```bash
2020
pytest my_first_test.py --browser=firefox
2121
```
2222

23-
* Run an example test in Demo Mode: (highlight assertions)
23+
Run an example test in Demo Mode: (highlight assertions)
2424
```bash
2525
pytest my_first_test.py --demo
2626
```
2727
<img src="https://cdn2.hubspot.net/hubfs/100006/images/my_first_test_gif.gif" title="SeleniumBase"><br />
2828

29-
* Run an example test in Headless Mode: (invisible browser)
29+
Run an example test in Headless Mode: (invisible browser)
3030
```bash
3131
pytest my_first_test.py --headless
3232
```
3333

34-
* Run tests with verbose output: (includes more details)
34+
Run tests with verbose output: (includes more details)
3535
```bash
3636
pytest test_suite.py -v
3737
```
3838

39-
* Run tests multi-threaded using [n] threads:
39+
Run tests multi-threaded using [n] threads:
4040
```bash
4141
pytest test_suite.py -v -n=4
4242
```
4343

44-
* Run a parameterized test: (Generates multiple tests from one)
44+
Run a parameterized test: (Generates multiple tests from one)
4545
```bash
4646
pytest parameterized_test.py -v
4747
```
4848

49-
* Run a test suite and generate a pytest report: (pytest-only)
49+
Run a test suite and generate a pytest report: (pytest-only)
5050
```bash
5151
pytest test_suite.py -v --html=report.html
5252
```
5353

54-
* Run a failing test: (See the ``latest_logs/`` folder for logs and screenshots)
54+
Run a failing test: (See the ``latest_logs/`` folder for logs and screenshots)
5555
```bash
5656
pytest test_fail.py
5757
```
5858

59-
* Run an example test using Chrome's mobile device emulator: (default settings)
59+
Run an example test using Chrome's mobile device emulator: (default settings)
6060
```bash
6161
pytest test_swag_labs.py --mobile
6262
```
6363

64-
* Run a failing test with Debug-mode enabled: (``pdb`` activates on failures)
64+
Run a failing test with Debug-mode enabled: (``pdb`` activates on failures)
6565
```bash
6666
pytest test_fail.py --pdb -s
6767
```
6868

69-
* Run an example test suite that demonstrates the use of pytest markers:
69+
Run an example test suite that demonstrates the use of pytest markers:
7070
```bash
7171
pytest -m marker_test_suite -v
7272
```
7373

74-
* Run an example test suite that reuses the browser session between tests:
74+
Run an example test suite that reuses the browser session between tests:
7575
```bash
7676
pytest test_suite.py --reuse-session -v
7777
```
7878

79-
* Run an example test demonstrating the ``rate_limited`` Python decorator:
79+
Run an example test demonstrating the ``rate_limited`` Python decorator:
8080
```bash
8181
pytest rate_limiting_test.py
8282
```
8383

84-
* Run an example test that demonstrates how to upload a file to a website:
84+
Run an example test that demonstrates how to upload a file to a website:
8585
```bash
8686
pytest upload_file_test.py
8787
```
8888

89-
* Run an example test suite and generate a nosetest report: (nosetests-only)
89+
Run an example test suite and generate a nosetest report: (nosetests-only)
9090
```bash
9191
nosetests test_suite.py --report --show-report
9292
```
9393

94-
* Run an example test using a nosetest configuration file: (nosetests-only)
94+
Run an example test using a nosetest configuration file: (nosetests-only)
9595
```bash
9696
nosetests my_first_test.py --config=example_config.cfg
9797
```

0 commit comments

Comments
 (0)