I am trying to run cucumber tests using maven with the following command
mvn test -Dcucumber.options="--tag @debug1"
This command works fine, however if I try something like the following, I get an error
mvn test -Dcucumber.options="--tag @debug1 @debug2"
Is there a way to pass multiple tag names with cucumber runtime parameters?
maven cucumber-jvm
Rahul lodha
source share