Skip to content

Commit c5e79fc

Browse files
committed
Update the docs
1 parent cdc7312 commit c5e79fc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/laptop_logo.png" title="SeleniumBase" height="160">
2-
3-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/new_logo_pre6c.png" title="SeleniumBase" height="47.8"><br />
1+
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_e.png" title="SeleniumBase" height="48">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)<br />
42

53
[<img src="https://img.shields.io/github/release/seleniumbase/SeleniumBase.svg?color=2277EE" alt="SeleniumBase" />](https://github.com/seleniumbase/SeleniumBase/releases) [<img src="https://img.shields.io/pypi/v/seleniumbase.svg?color=22AAEE" alt=" " />](https://pypi.python.org/pypi/seleniumbase) [<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt=" " />](https://gitter.im/seleniumbase/SeleniumBase) [<img src="https://img.shields.io/travis/seleniumbase/SeleniumBase/master.svg" alt=" " />](https://travis-ci.org/seleniumbase/SeleniumBase) [<img src="https://github.com/seleniumbase/SeleniumBase/workflows/CI%20build/badge.svg">](https://github.com/seleniumbase/SeleniumBase/actions)<br />
64

7-
Python framework for easy end-to-end testing and [website tours](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md) with [Selenium](https://selenium.dev/) and [pytest](https://docs.pytest.org/en/latest/index.html).
5+
Python framework for end-to-end Web-UI testing and [site tours](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md) with [Selenium](https://selenium.dev/) and [pytest](https://docs.pytest.org/en/latest/index.html).
86

97
<img src="https://cdn2.hubspot.net/hubfs/100006/images/my_first_test_gif.gif" title="SeleniumBase"><br />
10-
(<i>Above: [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py) from [examples/](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) running in Demo Mode, which adds JavaScript for highlighting page actions.</i>)<br />
8+
(<i>Above: [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py) from [examples/](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) running in Demo Mode.</i>)<br />
119
```bash
1210
pytest my_first_test.py --demo
1311
```
@@ -70,7 +68,7 @@ pytest my_first_test.py
7068
* Chrome is the default browser if not specified with ``--browser=BROWSER``.
7169
* On Linux ``--headless`` is the default behavior (running with no GUI). You can also run in headless mode on any OS. If your Linux machine has a GUI and you want to see the web browser as tests run, add ``--headed`` or ``--gui``.
7270

73-
**Here's an example test, [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py):**
71+
**Here's an example test, [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py):**<br />
7472
<img src="https://cdn2.hubspot.net/hubfs/100006/my_first_test_py_4.png" title="My First SeleniumBase Test"><br />
7573
* By default, **[CSS Selectors](https://www.w3schools.com/cssref/css_selectors.asp)** are used for finding page elements.
7674
* If you're new to CSS Selectors, games like [Flukeout](http://flukeout.github.io/) can help you learn.
@@ -240,6 +238,7 @@ SeleniumBase provides additional Pytest command-line options for tests:
240238
--verify-delay=SECONDS # (The delay before MasterQA verification checks.)
241239
--disable-csp # (This disables the Content Security Policy of websites.)
242240
--enable-sync # (The option to enable "Chrome Sync".)
241+
--incognito # (The option to enable Chrome's Incognito mode.)
243242
--reuse-session # (The option to reuse the browser session between tests.)
244243
--maximize-window # (The option to start with the web browser maximized.)
245244
--save-screenshot # (The option to save a screenshot after each test.)

help_docs/customizing_test_runs.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ SeleniumBase provides additional Pytest command-line options for tests:
208208
--headless # (The option to run tests headlessly. The default on Linux OS.)
209209
--headed # (The option to run tests with a GUI on Linux OS.)
210210
--start-page=URL # (The starting URL for the web browser when tests begin.)
211-
--log-path=LOG_PATH # (The directory where log files get saved to.)
212211
--archive-logs # (Archive old log files instead of deleting them.)
212+
--time-limit # (The option to set a time limit per test before failing it.)
213213
--slow # (The option to slow down the automation.)
214214
--demo # (The option to visually see test actions as they occur.)
215215
--demo-sleep=SECONDS # (The option to wait longer after Demo Mode actions.)
@@ -220,6 +220,7 @@ SeleniumBase provides additional Pytest command-line options for tests:
220220
--verify-delay=SECONDS # (The delay before MasterQA verification checks.)
221221
--disable-csp # (This disables the Content Security Policy of websites.)
222222
--enable-sync # (The option to enable "Chrome Sync".)
223+
--incognito # (The option to enable Chrome's Incognito mode.)
223224
--reuse-session # (The option to reuse the browser session between tests.)
224225
--maximize-window # (The option to start with the web browser maximized.)
225226
--save-screenshot # (The option to save a screenshot after each test.)

0 commit comments

Comments
 (0)