Skip to content

Commit bf6f843

Browse files
committed
Update the ReadMe
1 parent af05ad7 commit bf6f843

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,19 @@
5151

5252
--------
5353

54-
> **Table of Contents / Navigation:**
55-
> - [**Set up Python & Git**](#python_installation)
56-
> - [**Install SeleniumBase**](#install_seleniumbase)
57-
> - [**Basic Example & Usage**](#basic_example_and_usage)
58-
> - [**Generating Test Reports**](#creating_visual_reports)
59-
> - [**Common Test Methods**](#common_methods)
60-
> - [**Fun Facts / Learn More**](#fun_facts)
61-
> - [**Useful pytest Options**](#pytest_options)
62-
> - [**SeleniumBase Options**](#new_pytest_options)
54+
<blockquote>
55+
<p dir="auto"><strong>Table of Contents / Navigation:</strong></p>
56+
<ul dir="auto">
57+
<li><a href="#python_installation"><strong>Set up Python & Git</strong></a></li>
58+
<li><a href="#install_seleniumbase"><strong>Install SeleniumBase</strong></a></li>
59+
<li><a href="#basic_example_and_usage"><strong>Basic Example & Usage</strong></a></li>
60+
<li><a href="#creating_visual_reports"><strong>Generating Test Reports</strong></a></li>
61+
<li><a href="#common_methods"><strong>Common Test Methods</strong></a></li>
62+
<li><a href="#fun_facts"><strong>Fun Facts / Learn More</strong></a></li>
63+
<li><a href="#pytest_options"><strong>Useful pytest Options</strong></a></li>
64+
<li><a href="#new_pytest_options"><strong>SeleniumBase Options</strong></a></li>
65+
</ul>
66+
</blockquote>
6367

6468
--------
6569

@@ -182,17 +186,14 @@ Feature: SeleniumBase scenarios for the RealWorld App
182186
```bash
183187
git clone https://github.com/seleniumbase/SeleniumBase.git
184188
cd SeleniumBase/
185-
pip install . # Normal installation
186-
pip install -e . # Editable install
189+
pip install -e .
187190
```
188191

189-
> (When using a virtual env, the Editable install is faster.)
190-
191192
To upgrade an existing install from a GitHub clone:
192193

193194
```bash
194-
git pull # To pull the latest version
195-
pip install -e . # Or "pip install ."
195+
git pull
196+
pip install -e .
196197
```
197198

198199
🔵 Installing ``seleniumbase`` from PyPI:
@@ -677,7 +678,7 @@ pytest test_suite.py --dashboard --rs --headless
677678
--------
678679
679680
<a id="creating_visual_reports"></a>
680-
<h3><img src="https://seleniumbase.github.io/img/green_logo2.png" title="SeleniumBase" width="32" /> Creating Visual Test Reports:</h3>
681+
<h3><img src="https://seleniumbase.github.io/img/green_logo2.png" title="SeleniumBase" width="32" /> Generating Test Reports:</h3>
681682
682683
<h4><b>Pytest Reports:</b></h4>
683684

0 commit comments

Comments
 (0)