在behave/python中传递参数可以通过以下步骤实现:
Scenario: 使用参数
Given 我有一个参数 "<param>"
When 我传递参数给函数
Then 函数使用了参数 "<param>"
from behave import given, when, then
@given('我有一个参数 "{param}"')
def step_given(context, param):
context.param = param
@when('我传递参数给函数')
def step_when(context):
context.result = my_function(context.param)
@then('函数使用了参数 "{param}"')
def step_then(context, param):
assert context.result == param
behave features/my_feature.feature
这样,在运行测试时,behave会将.feature文件中定义的参数传递给对应的步骤函数,从而实现参数的传递和使用。
推荐的腾讯云相关产品和产品介绍链接地址:
请注意,以上链接仅供参考,具体产品选择应根据实际需求和情况进行评估。
领取专属 10元无门槛券
手把手带您无忧上云