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
Currently we are able to create a step definition with 2 parameters in StepDefiner.
Unable to add an extension locally since addStep is internal.
Is there any restriction that it should be only 2 parameters. Any suggestions to reuse existing implementation to use 3 parameters.
The text was updated successfully, but these errors were encountered:
step("The (.*) brown (.*) jumps over the lazy (.*)") { (parameters: StepMatches<String>) in
let speed = parameters[0]
let animalOne = parameters[1]
let animalTwo = parameters[2]
...the rest of your step definition...
}
Currently we are able to create a step definition with 2 parameters in StepDefiner.
Unable to add an extension locally since
addStep
isinternal
.Is there any restriction that it should be only 2 parameters. Any suggestions to reuse existing implementation to use 3 parameters.
The text was updated successfully, but these errors were encountered: