I wonder how to pass True or False arguments such like. (config_type = True) using behave in python language.
Scenario Outline:
Given
upload xls with parameters "shop" xlsx (path: "./upload12.xlsx") definition named "config_short" and "<config_type>"
Examples:
| config_type|
| False |
@given('upload xls with parameters "sh" xlsx (path: "./upload12.xlsx") definition named "config_short" and "{config_type}"')
def step_impl(context, config_type)
definition = someMethod(xlsx_path, config_short, config_type=True)
Is that a proper way to pass such arguments in BDD? In next test I want to reuse that someMethod but with config_type = False