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 a19a63c commit 2515b34Copy full SHA for 2515b34
examples/boilerplates/base_test_case.py
@@ -12,10 +12,11 @@ class BaseTestCase(BaseCase):
12
13
def setUp(self):
14
super(BaseTestCase, self).setUp()
15
- # Add custom setUp code for your tests AFTER the super().setUp()
+ # <<< Add custom setUp code for tests AFTER the super().setUp() >>>
16
17
def tearDown(self):
18
- # Add custom tearDown code for your tests BEFORE the super().tearDown()
+ self.save_teardown_screenshot()
19
+ # <<< Add custom tearDown code BEFORE the super().tearDown() >>>
20
super(BaseTestCase, self).tearDown()
21
22
def login(self):
0 commit comments