Multiple tags in the cucumber doesnt run the scenarios.
I have two different tags, tagged to two different scenarios under the same feature file. I try to run both the scenarios that are tagged, using the cucumber tags command
cucumber --tags @billing --tags @important
When I run this, cucumber doesn't recognize the scenarios, it provides the output like
0 scenarios
0 steps
0m0.000s
But when I run the tags individually, like cucumber --t @billing the cucumber is able to recognize and runs the scenario. Any idea why?
Any help is appreciated.
@billingtag and the other@importanttag. I didnt realise this command has to have both the tags in the same scenario. Could you please let me know the command, for my case? What I if I have different tags in two scenarios each? for eg: scenario 1 tagged with@importantscenario 2 tagged with@billingI want to run bothscenario1andscenario2- Emjeycucumber --tags @billing,@checkout,@notimportant,@important?- Emjey