Forum Discussion

naveens33_'s avatar
naveens33_
Contributor
3 years ago

Execute multiple steps as a string like behave.execute_steps(steps_text)

https://behave.readthedocs.io/en/stable/api.html?highlight=execute%20steps#behave.runner.Context.execute_steps

 

I want to execute certain steps from the script in run time like below,

 

@step('I call another step')
def step_impl(context):
    context.execute_steps(u'''when I set the Number to "5" exactly''')

Is there any equivalent method or way to achieve this in TestComplete BDD