Saved Bookmarks
| 1. |
What Are Cucumber Tags? And Why Do We Use Them? |
|
Answer» Cucumber tags help in filtering the scenarios. We can tag the scenarios and then run them based on tags.
cucumber FEATURES -t @<tag_name> EXAMPLE: cucumber features -t @test Cucumber tags help in filtering the scenarios. We can tag the scenarios and then run them based on tags. cucumber features -t @<tag_name> Example: cucumber features -t @test |
|