0

这是我的功能文件

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

4

1 回答 1

1

由于 pytest-bdd 正在读取您的示例表并为每个表条目创建一个夹具,您可以动态加载表数据。这可以通过传递示例表列的标题名称而不是值来完成,然后使用 pytestrequest夹具来检索实际的表值。

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
# IMPORTANT:
#    The step is parsed by `parsers.parse` and not by using
#    `<>`, therefore in the `app` variable will be the column
#    name (app, app1, app2, ...) of the examples table instead
#    of the actual value (instagram, facebook, ...).
@given(parsers.parse("Given {app} is installed on my device"))
def app_installed(request, app):
    app_to_install = request.getfixturevalue(app)
    # Install app ...

注意:您也可以<app>在功能文件中使用,但是您必须在调用之前删除 @given 步骤中的尖括号request.getfixturevalue(app)

于 2021-03-04T12:31:37.370 回答