I want to add a tag @skiponchrome to a scenario, this should skip the scenario when running a Selenium test with the Chrome browser. The reason to-do this is because some scenario's work in some environments and not in others, this might not even be browser testing specific and could be applied in other situation for example OS platforms.
Example hook:
@Before("@skiponchrome") // this works
public void beforeScenario() {
if(currentBrowser == 'chrome') { // this works
// Skip scenario code here
}
}
I know it is possible to define ~@skiponchrome in the cucumber tags to skip the tag, but I would like to skip a tag at run-time. This way I don't have to think about which steps to skip in advance when I starting a test run on a certain environment.
I would like to create a hook that catches the tag and skips the scenario without reporting a fail/error. Is this possible?
I realized that this is a late update to an already answered question, but I want to add one more option directly supported by cucumber-jvm:
"and the scenario will be marked as ignored (but the test will pass) if
weAreInPreProductionEnvironment
is false."You will need to add
The major difference with the accepted answer is that JUnit assume failures behave just like pending
Important Because of a bug fix you will need cucumber-jvm release 1.2.5 which as of this writing is the latest. For example, the above will generate a failure instead of a pending in cucumber-java8-1.2.3.jar
It's actually really easy. If you dig though the Cucumber-JVM and JUnit 4 source code, you'll find that JUnit makes skipping during runtime very easy (just undocumented).
Take a look at the following source code for JUnit 4's
ParentRunner
, which Cucumber-JVM'sFeatureRunner
(which is used inCucumber
, the default Cucumber runner):This is how JUnit decides what result to show. If it's successful it will show a pass, but it's possible to
@Ignore
in JUnit, so what happens in that case? Well, anAssumptionViolatedException
is thrown by theRunNotifier
(or CucumberFeatureRunner
in this case).So your example becomes:
If you've used vanilla JUnit 4 before, you'd remember that
@Ignore
takes an optional message that is displayed when a test is ignored by the runner.AssumptionViolatedException
carries the message, so you should see it in your test output after a test is skipped this way without having to write your own custom runner.If you're using Maven, you could read use a browser profile and then set the appropriate ~ exclude tags there?
Unless you're asking how to run this from command line, in which case you tag the scenario with @skipchrome and then when you run cucumber set the cucumber options to tags = {"~@skipchrome"}
I've implemented a customized junit runner as below. The idea is to add tags during runtime.
So say for a scenario we need new users, we tag the scenarios as "@requires_new_user". Then if we run our test in an environment (say production environment which dose not allow you to register new user easily), then we will figure out that we are not able to get new user. Then the ""not @requires_new_user" will be added to cucumber options to skip the scenario.
This is the most clean solution I can imagine now.
Or you can extends the official Cucumber Junit test runner cucumber.api.junit.Cucumber and override method
You can manipulate runtimeOptions here as you wish. But the method is marked as deprecated, so use it with caution.
If you wish simply to temporarily skip a scenario (for example, while writing the scenarios), you can comment it out (
ctrl
+/
in Eclipse or Intellij).I really prefer to be explicit about which tests are being run, by having separate run configurations defined for each environment. I also like to keep the number of tags I use to a minimum, to keep the number of configurations manageable.
I don't think it's possible to achieve what you want with tags alone. You would need to write a custom jUnit test runner to use in place of @RunWith(Cucumber.class). Take a look at the Cucumber implementation to see how things work. You would need to alter the RuntimeOptions created by the RuntimeOptionsFactory to include/exclude tags depending on the browser, or other runtime condition.
Alternatively, you could consider writing a small script which invokes your test suite, building up a list of tags to include/exclude dynamically, depending on the environment you're running in. I would consider this to be a more maintainable, cleaner solution.