Skip to content

Commit 097a2e4

Browse files
committed
Update ReadMe files
1 parent dfd0ad1 commit 097a2e4

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<link rel="icon" href="https://seleniumbase.io/img/logo6.png" />
77

88
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/">
9-
<img src="https://seleniumbase.io/cdn/img/mac_sb_logo_3.png" alt="SeleniumBase" title="SeleniumBase" width="360" /></a></p>
9+
<img src="https://seleniumbase.io/cdn/img/mac_sb_logo_3.png" alt="SeleniumBase" title="SeleniumBase" width="420" /></a></p>
1010

1111
<!-- View on GitHub -->
1212
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/releases">
@@ -49,10 +49,10 @@ Tests are run with <a href="https://docs.pytest.org/en/latest/index.html">pytest
4949
</p>
5050

5151
* Simplifies the creation of Web-UI tests.
52-
* Smart-waiting code keeps tests reliable.
52+
* Uses smart-waiting code for reliability.
53+
* Expands pytest [command-line options](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/customizing_test_runs.md).
5354
* Includes tools for [logging and reports](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/example_logs/ReadMe.md).
54-
* Has plugins that add new [pytest options](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/customizing_test_runs.md).
55-
* Has a vast library of [versatile methods](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/method_summary.md).
55+
* Has a vast library of [dynamic methods](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/method_summary.md).
5656

5757
--------
5858

examples/ReadMe.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://seleniumbase.io/cdn/img/super_logo_sb.png" title="SeleniumBase" width="300" />
1+
<img src="https://seleniumbase.io/cdn/img/super_logo_sb.png" title="SeleniumBase" width="320" />
22

33
<h2><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="32" /> Running Example Tests:</h2>
44

@@ -73,7 +73,7 @@ pytest test_demo_site.py
7373
Run tests multi-threaded using [n] threads:
7474

7575
```bash
76-
pytest test_suite.py -v -n=4
76+
pytest test_suite.py -n=4
7777
```
7878

7979
Run a parameterized test: (Generates multiple tests from one)
@@ -82,10 +82,16 @@ Run a parameterized test: (Generates multiple tests from one)
8282
pytest parameterized_test.py -v
8383
```
8484

85-
Run a test suite and generate a pytest report: (pytest-only)
85+
Run a test suite and generate a SeleniumBase Dashboard:
8686

8787
```bash
88-
pytest test_suite.py -v --html=report.html
88+
pytest test_suite.py --dashboard
89+
```
90+
91+
Run a test suite and generate a pytest report:
92+
93+
```bash
94+
pytest test_suite.py --html=report.html
8995
```
9096

9197
Run a failing test: (See the ``latest_logs/`` folder for logs and screenshots)
@@ -109,7 +115,7 @@ pytest -m marker_test_suite -v
109115
Run an example test suite that reuses the browser session between tests:
110116

111117
```bash
112-
pytest test_suite.py --reuse-session -v
118+
pytest test_suite.py --reuse-session
113119
```
114120

115121
Run an example test demonstrating the ``rate_limited`` Python decorator:
@@ -134,13 +140,13 @@ Run an example test with nosetests:
134140
nosetests my_first_test.py
135141
```
136142

137-
Run an example test suite and generate a nosetest report: (nosetests-only)
143+
Run an example test suite and generate a nosetest report:
138144

139145
```bash
140146
nosetests test_suite.py --report --show-report
141147
```
142148

143-
Run an example test using a nosetest configuration file: (nosetests-only)
149+
Run an example test using a nosetest configuration file:
144150

145151
```bash
146152
nosetests my_first_test.py --config=example_config.cfg
@@ -160,7 +166,7 @@ python gui_test_runner.py
160166

161167
--------
162168

163-
<img src="https://seleniumbase.io/cdn/img/super_logo_sb.png" title="SeleniumBase" width="290" />
169+
<img src="https://seleniumbase.io/cdn/img/super_logo_sb4.png" title="SeleniumBase" width="320" />
164170

165171
<a href="https://github.com/seleniumbase/SeleniumBase">
166172
<img src="https://img.shields.io/badge/tested%20with-SeleniumBase-04C38E.svg" alt="Tested with SeleniumBase" /></a>

0 commit comments

Comments
 (0)