How to include and exclude test methods from a set of test cases in
Cucumber?


We can include and exclude test methods from a set of test cases in Cucumber by tagging scenarios in the feature file.

Example

Feature file.

@Tutorialspoint Testing
Feature: Login Feature Testing
@Smoke
Scenario: Home Page Testing
Given User is in home page
@CodingModule
Scenario: Coding Module Testing
Given User is in Coding Module Page

The test runner file has tags Smoke to be excluded and CodingModule to be included in the execution.

Example

import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import cucumber.api.testng.AbstractTestNGCucumberTests;
@RunWith(Cucumber.class)
@CucumberOptions(
   features = “src/test/java/features”,
   glue = “stepDefiniations”
   tags = {“~@Smoke”, “@CodingModule”}
)

Updated on: 11-Jun-2020

456 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements