Skip to content

Commit efdcb30

Browse files
committed
Update example boilerplate
1 parent acf8bac commit efdcb30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/boilerplates/master_class.py renamed to examples/boilerplates/master_test_case.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
You can use this as a boilerplate for your test framework.
33
Define your customized library methods in a master class like this.
44
Then have all your test classes inherit it.
5-
The master class will inherit SeleniumBase methods from BaseCase.
5+
MasterTestCase will inherit SeleniumBase methods from BaseCase.
66
'''
77

88
from seleniumbase import BaseCase
@@ -27,7 +27,7 @@ def example_method(self):
2727
'''
2828
# Now you can do something like this in your test files:
2929
30-
from master_class import MasterTestCase
30+
from master_test_case import MasterTestCase
3131
3232
class MyTests(MasterTestCase):
3333

0 commit comments

Comments
 (0)