End to End (E2E) Testing in Cucumber

Discover how Cucumber simplifies E2E testing with BDD, making test automation more efficient, readable, and scalable across all browsers.

Get Started free
End to End (E2E) Testing in Cucumber
Home Guide End to End (E2E) Testing in Cucumber

End to End (E2E) Testing in Cucumber

Cucumber is a powerful tool for end-to-end (E2E) testing that uses Behavior-Driven Development (BDD) to bridge the gap between technical and non-technical stakeholders.

By writing test scenarios in plain English (Gherkin syntax), teams can ensure clear, collaborative, and automated testing across web, mobile, and API applications.

Overview

What is E2E Testing?

End-to-End (E2E) testing ensures that an application functions correctly from start to finish by simulating real user scenarios. It validates the integration of all components, including databases, APIs, and UI, to ensure seamless workflow and prevent critical failures before deployment.

What is the Cucumber Framework?

Cucumber is an open-source BDD (Behavior-Driven Development) testing framework that allows writing test cases in plain English (Gherkin syntax). It bridges the gap between technical teams and business stakeholders by making tests readable, reusable, and easy to automate.

Why use Selenium and Cucumber for E2E Testing?

Selenium automates web applications across browsers, while Cucumber makes test scripts readable, maintainable, and business-friendly. Together, they enable efficient end-to-end automation by combining Selenium’s robust browser testing capabilities with Cucumber’s structured BDD approach.

This article explores how to use BDD test automation to perform E2E testing with Cucumber.

What is E2E testing?

E2E testing stands for end to end testing, is a method to ensure that the application is working as expected. The main purpose behind the implementation of E2E testing is to test from the real user’s perspective. Software systems are made of complex and interconnected subsystems. Therefore, E2E testing prevents the entire system from breakdown because of the failure of one subsystem.

E2E testing is now widely adopted in several technologies due to numerous benefits such as less expensive, bug detection, the correctness of the application, and many more. E2E testing helps in achieving greater success for the application by testing it under real-world conditions. Moreover, it would let QAs know how a failing test would impact the user.

Talk to an Expert

What is Cucumber Framework?

Cucumber Framework is a testing tool that supports BDD Testing (Behavior Driven Development). It allows the user to write tests in the Gherkin language (easy descriptive English language), which anyone can understand. This helps in bringing more collaborators to one project, thus improving the quality of the work. Cucumber framework uses Ruby programming language, however for development and supports several other languages such as JavaScript, Java, C#, and more.

Introduction to BDD (Behavior Driven Development)

BDD (Behavior Driven Development) is a technique where a test is written in an easy language, plain English, which anyone could understand without any technical knowledge. This technique has many benefits while developing and testing.

Some features of the BDD technique are as follows:

  • It encourages higher collaboration, as people without any technical knowledge could also be useful in writing tests. This helps in filling the gap between the developer, business analyst, and other stakeholders of the project.
  • Gherkin language uses plain English, which helps in increasing the readability of the tests, thus, ultimately increasing the quality of writing tests.

Why use Selenium for End-to-End Testing?

Selenium is an open-source tool that is useful in automating tests in web browsers. It supports several programming languages such as C#, Java, JavaScript, NodeJs, PHP, and many more.

A few benefits of incorporating Selenium in our testing are:

  • Selenium automation test could be implemented across multiple operating systems and programming languages.
  • It gives a user-friendly interface that helps in faster development, customization, and manipulation at an advanced level.
  • It has strong community support, which makes it a better choice.

BrowserStack Automate Banner

Implementation of Cucumber End to End Testing

Understand Cucumber E2E testing with a practical example. Perform a test in which the browser first navigates to a URL, validates something there, and exits the browser. This simple test will help us understand the basic concepts of E2E testing with Cucumber.

Run Cucumber E2E Tests on Real Devices

Step 1: Install IDE and Set up Java

  • Install Eclipse IDE, however, you can use any IDE of your choice.
  • Install Java. To ensure that Java is installed on your system, run a quick command in the terminal to check the Java version.
Java -version
Copied

Step 2: Install Selenium and Cucumber

Step 3: Create a new Maven Project

Install Maven Plugin. However, in the latest versions of Eclipse, it comes installed already.

Step 4: Add Maven dependencies and Selenium to your project

In this step, you have to add several dependencies. Navigate to the pom.xml file in the folder structure and add the dependencies mentioned below. These dependencies are available in the Maven Repository.

Step 5: Create a feature file 

A feature file is a file where you will describe your tests in a Gherkin language (Like English). Navigate to src/test/resources in the folder structure and then create a feature folder. Also, add a feature file in the feature folder there.

Feature: Open an application

Scenario: Open Selenium application
Given user has opened the browser
When I open BrowserStack demo website
Then Login button should exist
Copied

Step 6: Install the Cucumber Eclipse Plugin and a web driver

Install the Cucumber Eclipse Plugin from the Eclipse marketplace. The Cucumber plugin lets the codebase know you’re creating a Cucumber project. Moreover, Install Browser Driver to automate your Selenium tests in a browser of your choice. In this example, use the FirefoxDriver.

Step 7: Create Step Definitions

Step Definition is a java method in a class containing Annotations. An annotation followed by the pattern is used to link the step Definition to all the steps created in the feature file.

To create Step definitions, navigate to the src/test/java package and then add a step definition folder and file there.

package CucumberJava;

import org.openqa.selenium.By; 
import org.openqa.selenium.WebDriver; 
import org.openqa.selenium.firefox.FirefoxDriver; 
import cucumber.annotation.en.Given; 
import cucumber.annotation.en.Then; 
import cucumber.annotation.en.When;

public class cucumberJava { 
WebDriver driver = null;

// Opening the browser 

@Given("user has opened the browser") 
public void openBrowser() { 
driver = new FirefoxDriver(); 
}

// Launching the bstackdemo website for testing

@When("I open BrowserStack demo website") 
public void goTobstackdemo() { 
driver.navigate().to("https://bstackdemo.com/signin"); 
}

//Verifying if the page contains the active login button 

@Then("Login button should exist") 
public void loginButton() { 
if(driver.findElement(By.id("login-btn")).isEnabled()) { 
System.out.println("Test Pass"); 
} else { 
System.out.println("Test Fail"); 
} 
driver.close(); 
} 
}
Copied

Step 8: Create a Runner Class

Create a class file in the Step Definitions folder and add the runner class script. The runner class will look something like this.

package cucumberTest;

import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/Feature"
,glue={"src/test/java/stepDefinition"}
)

public class TestRunner {
}
Copied

Conclusion

The Cucumber framework in Selenium makes End-to-End (E2E) testing more effective by allowing test scenarios to be written in natural language, making them easy to understand and ideal for testing. This enhances collaboration between teams and ensures comprehensive validation of software behavior.

However, accurate test results require testing on real devices and browsers to capture real-world performance, cross browser compatibility, and user experience. BrowserStack Automate provides access to a real device cloud, enabling teams to run Selenium tests seamlessly and ensure flawless website functionality across all environments.

Try BrowserStack Now

Tags
Automated UI Testing Website Testing