2
我想知道是否可以使用cucumber-jvm
多次執行場景/功能。謝謝。如何多次執行黃瓜方案/功能?
我想知道是否可以使用cucumber-jvm
多次執行場景/功能。謝謝。如何多次執行黃瓜方案/功能?
您可以用幾種方法:
在操作系統級別:運行命令多次或寫 適當的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|
它看起來有些人爲,但工程。 我使用這種方法來收集依賴於很多條件的複雜測試的統計數據。
你可以展示你當前如何執行(一次)。 – Bala