SeleniumBase/examples/boilerplates
Michael Mintz 7c1bf93056 Update example tests 2024-02-26 11:59:18 -05:00
..
samples Update example tests 2024-02-26 11:59:18 -05:00
ReadMe.md Update the documentation 2022-12-23 22:59:16 -05:00
__init__.py Update examples 2023-02-03 00:27:36 -05:00
base_test_case.py Update examples 2023-02-03 00:27:36 -05:00
boilerplate_test.py Update example tests 2024-01-18 22:06:32 -05:00
classic_obj_test.py Update examples 2023-02-03 00:27:36 -05:00
page_objects.py Update examples 2023-02-03 00:27:36 -05:00
sb_fixture_test.py Update example tests 2023-01-19 00:07:40 -05:00

ReadMe.md

Example Boilerplates:

Boilerplate Files:

  • base_test_case.py: This example demonstrates a test class inheriting BaseCase for adding new methods.
  • page_objects.py: This example demonstrates Page Objects for reusing commonly-used selectors in tests.
  • boilerplate_test.py: This example demonstrates inheritance of the above files for making a complete test.
  • classic_obj_test.py: This example demonstrates the classic Page Object Model for structuring tests.

SeleniumBase