Hi,
My Cukes runner looks like this:
@RunWith(Cucumber.class)
@CucumberOptions(
plugin={"pretty",
tags={"~@ignore","@new_test"},
features="src/cucumberNL/"
)
I want to run just 1 test out of 6. So I have added 5 @ignore before 5 tests and 1 @new_test before the test I want to run. Still it is executing all 6 tests.
Then I just had all @ignore still it runs all 6.
Sample:
@ignore
Scenario Outline: Fourth
Given I open NL Product Page
When I click on <Name> Link
Then The <Subsequent> link Page opens
Examples:
| Name | Subsequent |
| "Appliances" | "Appliances" |
| "Services" | "Services" |
Any help will be highly appreciated.
-Arpan