We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf8bac commit efdcb30Copy full SHA for efdcb30
examples/boilerplates/master_class.py renamed to examples/boilerplates/master_test_case.py
@@ -2,7 +2,7 @@
2
You can use this as a boilerplate for your test framework.
3
Define your customized library methods in a master class like this.
4
Then have all your test classes inherit it.
5
-The master class will inherit SeleniumBase methods from BaseCase.
+MasterTestCase will inherit SeleniumBase methods from BaseCase.
6
'''
7
8
from seleniumbase import BaseCase
@@ -27,7 +27,7 @@ def example_method(self):
27
28
# Now you can do something like this in your test files:
29
30
-from master_class import MasterTestCase
+from master_test_case import MasterTestCase
31
32
class MyTests(MasterTestCase):
33
0 commit comments