I am trying run cucumber tests using maven with following command
mvn test -Dcucumber.options=\"--tag @debug1\"
This command works fine, ho
In cucumber v5.X, only mvn test -Dcucumber.options="--tags '@debug1 or @debug2'" is supported and working. mvn test -Dcucumber.options="--tags '@debug1 and @debug2'" is not working and either scenarios won't get executed
mvn test -Dcucumber.options="--tags '@debug1 or @debug2'"
mvn test -Dcucumber.options="--tags '@debug1 and @debug2'"