Cucumber-JVM: Running a @Before step only for certain scenarios

You can make use Cucumber’s @Before and @After to execute only for certain scenarios like the below. This is especially useful if you, say, wanted to make a (Mongo) DB connection for a few test scenarios.


@Before("@mongo")
public void beforeScenario() {
  // actions
}

@After("@mongo")
public void afterScenario() {
  // actions
}

To complete the hook, you simply add “@mongo” tag to the scenarios in your feature file. Cheers!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.