You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: