2024-07-23 14:00:35 +00:00
|
|
|
# pylint: disable=unused-argument
|
2020-10-09 20:07:44 +00:00
|
|
|
def before_all(context):
|
|
|
|
# -- SET LOG LEVEL: behave --logging-level=ERROR ...
|
|
|
|
# on behave command-line or in "behave.ini".
|
|
|
|
context.config.setup_logging()
|
2024-07-23 14:00:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
def after_scenario(context, scenario):
|
|
|
|
context.driver.quit()
|