Execute multiple steps as a string like behave.execute_steps(steps_text)
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2022
05:52 AM
01-19-2022
05:52 AM
Execute multiple steps as a string like behave.execute_steps(steps_text)
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
Labels:
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2022
07:58 AM
01-19-2022
07:58 AM
See if this helps
https://support.smartbear.com/testcomplete/docs/bdd/binding.html
Marsha_R
[Community Hero]
____
[Community Heroes] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Heroes]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Hero] signature is used with permission by SmartBear Software.
https://community.smartbear.com/t5/custom/page/page-id/hall-of-fame
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2022
08:41 AM
01-19-2022
08:41 AM
This https://support.smartbear.com/testcomplete/docs/bdd/binding.html page only talks about bdd binding. I need solution for call a step inside another step definition function like behave.execute_steps("")
