The following causes Gwen to recurse forever trying to resolve a StepDef parameter value when executed in --dry-run mode only.
@StepDef
Scenario: I select "<a>" from the options list
Given I click option "$<a>"
When I do something with "$<a>"
@StepDef
Scenario: I do something with "<a>"
In this example, $<a> resolves to $<a> at runtime when doing a dry run check on the call to the second StepDef (the When step). It hence infinitely recurses.
The following causes Gwen to recurse forever trying to resolve a StepDef parameter value when executed in
--dry-run
mode only.In this example,
$<a>
resolves to$<a>
at runtime when doing a dry run check on the call to the second StepDef (theWhen
step). It hence infinitely recurses.