25 lines
748 B
Python
25 lines
748 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# This file contains hook functions to run as the .feature file is executed
|
||
|
|
||
|
sys.path.append(os.path.join(os.path.dirname(__file__), "../../../testSuites/global_shared/"))
|
||
|
sys.path.append(os.path.join(os.path.dirname(__file__), "../../../src/"))
|
||
|
|
||
|
import steps.startupSteps as init_steps
|
||
|
|
||
|
# Global properties for the specific feature
|
||
|
_user = "tester123"
|
||
|
_password = "TesTEr16843/!@00"
|
||
|
|
||
|
@OnFeatureStart
|
||
|
def hook(context):
|
||
|
init_steps.context_init(context)
|
||
|
init_steps.signs_up_process_steps(context, _user, _password)
|
||
|
|
||
|
@OnFeatureEnd
|
||
|
def hook(context):
|
||
|
currentApplicationContext().detach()
|
||
|
snooze(_app_closure_timeout)
|
||
|
|
||
|
@OnStepEnd
|
||
|
def hook(context):
|
||
|
context.userData["step_name"] = context._data["text"]
|