Hello,
I have a maven task configured and I'm able to pass -Dcucumber.options to it.
e.g.
-Dbrowser=chrome -Denv=QA "-Dcucumber.options=--tags @SANITY" clean verify
how do you i pass multiple tags? I tried
"-Dcucumber.options=--tags @SANITY --tags @SANITY1" but the plan says
Running RunTest
None of the features at [classpath:features] matched the filters: [@SANITY, @SANITY1]
$ mvn clean verify -Dcucumber.filter.tags="@sanity1 and @sanity2"
Hi Shash
Do any of your Scenarios have both the "@SANITY" and "@SANTIY1" tags at the same time. The Cucumber options expressions you have specified is using a logical AND on the tags. A logical OR would be "-Dcucumber.options=--tags @SANITY,@SANITY1", notice the comma separating the tags
Cheers
Alan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was able to do this. But my features with ignore tags are also executing.
How can i resolve that problem?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
mvn clean verify -Dcucumber.filter.tags="@sanity and @vG and ~@ignore"
Maybe something like this. But this isn't working
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.