|
51 | 51 |
|
52 | 52 | --------
|
53 | 53 |
|
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> |
63 | 67 |
|
64 | 68 | --------
|
65 | 69 |
|
@@ -182,17 +186,14 @@ Feature: SeleniumBase scenarios for the RealWorld App
|
182 | 186 | ```bash
|
183 | 187 | git clone https://github.com/seleniumbase/SeleniumBase.git
|
184 | 188 | cd SeleniumBase/
|
185 |
| -pip install . # Normal installation |
186 |
| -pip install -e . # Editable install |
| 189 | +pip install -e . |
187 | 190 | ```
|
188 | 191 |
|
189 |
| -> (When using a virtual env, the Editable install is faster.) |
190 |
| -
|
191 | 192 | To upgrade an existing install from a GitHub clone:
|
192 | 193 |
|
193 | 194 | ```bash
|
194 |
| -git pull # To pull the latest version |
195 |
| -pip install -e . # Or "pip install ." |
| 195 | +git pull |
| 196 | +pip install -e . |
196 | 197 | ```
|
197 | 198 |
|
198 | 199 | 🔵 Installing ``seleniumbase`` from PyPI:
|
@@ -677,7 +678,7 @@ pytest test_suite.py --dashboard --rs --headless
|
677 | 678 | --------
|
678 | 679 |
|
679 | 680 | <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> |
681 | 682 |
|
682 | 683 | <h4><b>Pytest Reports:</b></h4>
|
683 | 684 |
|
|
0 commit comments