我想知道是否可以多次使用cucumber-jvm
方案/功能执行。感谢。
答案 0 :(得分:2)
您可以使用多种方法:
在操作系统级别:多次运行命令或写入 适当的shell脚本。
关于黄瓜水平。例如。你有 以下专题文件:
Feature: My great feature
Scenario: My scenario
Given My given step one
When My when step two
Then My then step three
你可以强迫瓜黄jvm运行几次,例如3通过改造"场景"到"场景概述"并使用"示例":
Feature: My great feature
Scenario **Outline**: My scenario
Given My given step <number>
When My when step two
Then My then step three
Examples: to run this scenario several times
|number|
|one|
|one|
|one|
它看起来有些人为,但有效。 我使用这种方法来收集复杂测试的统计数据,这取决于很多条件。