【发布时间】:2020-10-19 07:50:20
【问题描述】:
在他们的网站上:https://cucumber.io/docs/gherkin/reference/
它在关键字下列出了示例(或场景)。是否有区别,或者可以用一个关键字完成的所有事情都可以用另一个关键字完成?
【问题讨论】:
标签: gherkin
在他们的网站上:https://cucumber.io/docs/gherkin/reference/
它在关键字下列出了示例(或场景)。是否有区别,或者可以用一个关键字完成的所有事情都可以用另一个关键字完成?
【问题讨论】:
标签: gherkin
场景是一个带有步骤的测试。 Scenario Outline 适用于您要循环使用表数据的场景,Example 是该表的标题。
Scenario: Test something
Given I am logged in
And I select the "Add" tab
And I select the "New" button
Then the form is displyed
Scenario Outline: Test something else
Given I am logged in as "<user>"
And I select the "Add" tab
And I select the "<item>" button
Then the form is displyed
Examples:
| user | item |
| aaaa | Add |
| bbbb | Edit |
【讨论】: