这是我的功能文件
Scenario Outline: Test different value for same parameter
Examples:
| app | app1 |
| instagram| facebook |
Given <app> is installed on my device
And <app1> is installed on my device
@given("<app> is installed on my device")
def app_installation(app):
install_app(app)
截至目前,我不能在相同的步骤中使用 app2 值,我必须app_installation
使用app1
参数进行复制
有没有一种方法可以让我在示例中使用可以映射到的任何参数app