SeleniumBase/examples/boilerplates
Michael Mintz e5f35c39ce Update example tests 2022-08-18 16:01:37 -04:00
..
samples Update example tests 2022-08-18 16:01:37 -04:00
ReadMe.md Update the documentation 2022-06-08 19:46:14 -04:00
__init__.py Add boilerplates to examples 2018-02-01 17:08:21 -05:00
base_test_case.py Update examples 2022-05-13 16:19:05 -04:00
boilerplate_test.py Refactor the tests 2021-05-05 21:06:24 -04:00
classic_obj_test.py Refactor the tests 2021-05-05 21:06:24 -04:00
page_objects.py Refactor the tests 2021-05-05 21:06:24 -04:00
sb_fixture_test.py Refactor the tests 2021-05-05 21:06:24 -04: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