Skip to content

Commit 09c61b1

Browse files
committed
Update the docs
1 parent e0f7b17 commit 09c61b1

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,6 @@ Additionally, you can use the ``@retry_on_exception()`` decorator to specificall
808808
<div><b>If you like us, give us a star!</b></div>
809809
<div><a href="https://github.com/seleniumbase/SeleniumBase/stargazers"><img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg?color=888CFA" title="Stargazers" /></a></div>
810810
</p>
811-
<div style="width:92%;"><!--not_for_site--><iframe src="https://seleniumbase.io/" style="width:92%;height:450px;" title="iframe content"></iframe></div>
812811
<div><!--not_for_site--><iframe src="https://seleniumbase.io/help_docs/ReadMe/" style="width:92%;height:580px;" title="iframe content"></iframe></div>
813812
<p><div><a href="https://github.com/mdmintz">https://github.com/mdmintz</a></div></p>
814813

help_docs/ReadMe.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div><a href="https://github.com/seleniumbase/SeleniumBase"><img src="https://cdn2.hubspot.net/hubfs/100006/images/sb_media_logo.png" alt="SeleniumBase" width="240" /></a></div>
22

3-
<h2><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Help Documents</h2>
3+
<h2><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Help Docs</h2>
44

55
<h3>Table of Contents (<a href="https://seleniumbase.io">seleniumbase.io</a>)</h3>
66

@@ -32,6 +32,17 @@
3232

3333
--------
3434

35+
<h3>Demo Pages / Web Examples</h3>
36+
37+
<div><a href="https://seleniumbase.io/demo_page"><b>Demo Page / Demo Site</b></a></div>
38+
<div><a href="https://seleniumbase.io/other/tinymce"><b>TinyMCE Demo Page</b></a></div>
39+
<div><a href="https://seleniumbase.io/error_page/"><b>Error Page for Tests</b></a></div>
40+
<div><a href="https://seleniumbase.io/other/presenter.html"><b>Presenter Demo</b></a></div>
41+
<div><a href="https://seleniumbase.io/other/core_presentation.html"><b>Core Presentation</b></a></div>
42+
<div><a href="https://seleniumbase.io/other/chart_presentation.html"><b>Chart Maker Demo</b></a></div>
43+
44+
--------
45+
3546
<h3>GitHub Pages ToC (<a href="https://seleniumbase.com">seleniumbase.com</a>)</h3>
3647

3748
<div><a href="https://seleniumbase.com/help_docs/features_list"><b>Features List</b></a></div>

help_docs/how_it_works.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ At the core, SeleniumBase works by extending [pytest](https://docs.pytest.org/en
88
(NOTE: pytest uses a feature called test discovery to automatically find and run Python methods that start with "``test_``" from the file that you specified on the command line.)
99

1010
To use SeleniumBase calls you need the following:
11+
1112
```python
1213
from seleniumbase import BaseCase
1314
```
15+
1416
And then have your test classes inherit BaseCase:
17+
1518
```python
1619
class MyTestClass(BaseCase):
1720
```
18-
(*See the example test, [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py), for reference.*)
21+
22+
(See the example test, [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py), for reference.)

0 commit comments

Comments
 (0)