jBehave write common step

385 Views Asked by At

Can I have the following step method using jBehave;

@When("I select action <actionText> on <panelTitle>")
@Alias("I select action $actionText on $panelTitle")
public void myMethod(@Named("actionText") String actionText, @Named("panelTitle") String panelTitle) {
    // My code
}

So as you can see, the step text is the same. Only thing is in one case, the value is through parameter injection and in other it is through parameterised scenarios

1

There are 1 best solutions below

0
On

I have seen similar implementation in link: http://jbehave.org/reference/stable/parametrised-scenarios.html

So, you can use this method.