Skip to content

Commit 176a815

Browse files
committed
Update the docs
1 parent f86b357 commit 176a815

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@ ui_tests/
430430
│ ├── __init__.py
431431
│ ├── base_test_case.py
432432
│ ├── boilerplate_test.py
433+
│ ├── classic_obj_test.py
433434
│ ├── page_objects.py
434435
│ └── samples/
435436
│ ├── __init__.py

examples/boilerplates/ReadMe.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* <b>[base_test_case.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/boilerplates/base_test_case.py):</b> This example demonstrates a test class inheriting [BaseCase](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) for adding new methods.
1111
* <b>[page_objects.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/boilerplates/page_objects.py):</b> This example demonstrates Page Objects for reusing commonly-used selectors in tests.
1212
* <b>[boilerplate_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/boilerplates/boilerplate_test.py):</b> This example demonstrates inheritance of the above files for making a complete test.
13+
* <b>[classic_obj_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/boilerplates/classic_obj_test.py):</b> This example demonstrates the classic Page Object Model for structuring tests.
1314

1415
--------
1516

seleniumbase/console_scripts/ReadMe.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,27 @@ sample tests for helping new users get started,
7070
and Python boilerplates for setting up customized
7171
test frameworks.
7272

73+
```bash
74+
.
75+
├── __init__.py
76+
├── boilerplates/
77+
│ ├── __init__.py
78+
│ ├── base_test_case.py
79+
│ ├── boilerplate_test.py
80+
│ ├── classic_obj_test.py
81+
│ ├── page_objects.py
82+
│ └── samples/
83+
│ ├── __init__.py
84+
│ ├── google_objects.py
85+
│ └── google_test.py
86+
├── my_first_test.py
87+
├── parameterized_test.py
88+
├── pytest.ini
89+
├── requirements.txt
90+
├── setup.cfg
91+
└── test_demo_site.py
92+
```
93+
7394
### mkfile
7495

7596
* Usage:

0 commit comments

Comments
 (0)