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 2515b34 commit 18c04e1Copy full SHA for 18c04e1
seleniumbase/console_scripts/sb_mkdir.py
@@ -152,10 +152,11 @@ def main():
152
data.append("")
153
data.append(" def setUp(self):")
154
data.append(" super(BaseTestCase, self).setUp()")
155
- data.append(" # Add custom setUp code AFTER the super() line")
+ data.append(" # << Add custom code AFTER the super() line >>")
156
157
data.append(" def tearDown(self):")
158
- data.append(" # Add custom code BEFORE the super() line")
+ data.append(" self.save_teardown_screenshot()")
159
+ data.append(" # << Add custom code BEFORE the super() line >>")
160
data.append(" super(BaseTestCase, self).tearDown()")
161
162
data.append(" def login(self):")
0 commit comments