The previous tutorial has shown the various parameterized tests in JUnit5. This tutorial shows how to run a test multiple times with a different set of data. This helps to reduce the duplication of code. This is a very common scenario in any testing. Imagine, we want to test the requirement for a login page that uses a username and password to log in to the application. Username and password must satisfy some conditions like username can be only alphabets and no numeric and special characters. There could be multiple sets of data that can be used to test this requirement.
Pre-Requisite:
- Selenium – 3.141.59
- Maven
- Java 11
- JUnit Jupiter Engine – 5.8.2
- JUnit Jupiter API- 5.8.2
JUnit5 provides a lot of ways to parameterize a test – @ValueSource, @EnumSource, @MethodSource, @CsvSource, @CsvFileSource, and @ArgumentsSource.
Let us see an example where the test is not parameterized. In the below example, we want to verify the different error messages generated by passing incorrect values to username and password.
This is the base class – Login which contains the test method that uses a different set of test data.
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class LoginPage {
WebDriver driver ;
@FindBy(name="txtUsername")
WebElement username;
@FindBy(name="txtPassword")
WebElement password;
@FindBy(id="btnLogin")
WebElement loginButton;
@FindBy(id="spanMessage")
WebElement actualErrorMessage;
public LoginPage(WebDriver driver) {
this.driver = driver;
// This initElements method will create all WebElements
PageFactory.initElements(driver, this);
}
public void setUserName(String strUserName) {
username.sendKeys(strUserName);
}
// Set password in password textbox
public void setPassword(String strPassword) {
password.sendKeys(strPassword);
}
// Click on login button
public void clickLogin() {
loginButton.click();
}
// Get the error message
public String getErrorMessage() {
return actualErrorMessage.getText();
}
public void login(String strUserName, String strPasword) {
// Fill user name
this.setUserName(strUserName);
// Fill password
this.setPassword(strPasword);
// Click Login button
this.clickLogin();
}
}
The below example shows 4 tests using a common test with 4 different sets of data.
import io.github.bonigarcia.wdm.WebDriverManager;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class NonParameterizedLoginTest {
WebDriver driver;
LoginPage login;
@BeforeEach
void setUp() {
WebDriverManager.chromedriver().setup();
ChromeOptions chromeOptions = new ChromeOptions();
driver = new ChromeDriver(chromeOptions);
driver.manage().window().maximize();
driver.get("https://opensource-demo.orangehrmlive.com/");
}
@Test
void invalidCredentials1() {
login = new Login(driver);
login.login("Admin","Admin");
String actualErrorMessage = login.getErrorMessage();
assertEquals("Invalid credentials", actualErrorMessage);
}
@Test
void invalidCredentials2() {
login = new Login(driver);
login.login("","Admin");
String actualErrorMessage = login.getErrorMessage();
assertEquals("Username cannot be empty", actualErrorMessage);
}
@Test
void invalidCredentials3() {
login = new Login(driver);
login.login("Admin","");
String actualErrorMessage = login.getErrorMessage();
assertEquals("Password cannot be empty", actualErrorMessage);
}
@Test
void invalidCredentials4() {
login = new Login(driver);
login.login("","");
String actualErrorMessage = login.getErrorMessage();
assertEquals("Username cannot be empty", actualErrorMessage);
}
@AfterEach
void tearDown() {
if (driver != null) {
driver.close();
}
}
}
We can see that the same method is called multiple times. This is a duplication of code. The output of the above program is

Now, we will parametrize the same test. To do so, we need to add a dependency to the POM.xml.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>JUnit5Demo</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>5.1.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
There are multiple ways to parameterize the test. To start with:
- Replace @Test annotation with @ParameterizedTest annotation provided by the JUnit5 framework.
- Add parameters to the loginTest() method. In this example, we will add a username and a password parameter.
- Add the parameters source. In this example, we will use the @CsvFileSource annotation.
In this example, will retrieve the data from CSV. This CSV file is placed under src/test/resources. Below is the example of the credentials.csv file.

To know all the different types of parameterization methods, please refer to this tutorial. This tutorial will show the 2 most common ways to parameterize tests in JUnit5.
1.@CsvSource
@CsvSource allows us to express argument lists as comma-separated values (i.e., CSV String literals). Each string provided via the value attribute in @CsvSource represents a CSV record and results in one invocation of the parameterized test. An empty, quoted value (”) results in an empty String. This can be seen in the below example.
import io.github.bonigarcia.wdm.WebDriverManager;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvFileSource;
import org.junit.jupiter.params.provider.CsvSource;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class ParameterizedLoginPageTest {
WebDriver driver;
LoginPage loginPage;
@BeforeEach
void setUp() {
WebDriverManager.chromedriver().setup();
ChromeOptions chromeOptions = new ChromeOptions();
driver = new ChromeDriver(chromeOptions);
driver.manage().window().maximize();
driver.get("https://opensource-demo.orangehrmlive.com/");
}
@ParameterizedTest
@CsvSource({
"admin123,admin123,Invalid credentials",
"'',admin123,Username cannot be empty",
"Admin,'',Password cannot be empty",
"'','',Username cannot be empty"
})
void invalidCredentials1(String username, String password, String errorMessage) {
loginPage = new LoginPage(driver);
loginPage.login(username,password);
String actualErrorMessage = loginPage.getErrorMessage();
assertEquals(errorMessage, actualErrorMessage);
}
@AfterEach
void tearDown() {
driver.close();
}
}
The output of the above program is

2. @CsvFileSource
@CsvFileSource lets us use comma-separated value (CSV) files from the classpath or the local file system.
We can see in the below example, that we have skipped the first line from the credentials.csv file as it is the heading of the file. invalidCredentials() method got 4 different set of the test data from CSV file using parameterization. JUnit5 ignores the headers via the numLinesToSkip attribute.
In @CsvFileSource, an empty, quoted value (“”) results in an empty String in JUnit5.
import io.github.bonigarcia.wdm.WebDriverManager;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvFileSource;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class ParameterizedLoginPageTest {
WebDriver driver;
LoginPage loginPage;
@BeforeEach
void setUp() {
WebDriverManager.chromedriver().setup();
ChromeOptions chromeOptions = new ChromeOptions();
driver = new ChromeDriver(chromeOptions);
driver.manage().window().maximize();
driver.get("https://opensource-demo.orangehrmlive.com/");
}
@ParameterizedTest
@CsvSource({
"admin123,admin123,Invalid credentials",
"'',admin123,Username cannot be empty",
"Admin,'',Password cannot be empty",
"'','',Username cannot be empty"
})
@ParameterizedTest
@CsvFileSource(files = "src/test/resources/credentials.csv", numLinesToSkip = 1)
void invalidCredentials(String username, String password, String errorMessage) {
loginPage = new LoginPage(driver);
loginPage.login(username,password);
String actualErrorMessage = loginPage.getErrorMessage();
assertEquals(errorMessage, actualErrorMessage);
}
@AfterEach
void tearDown() {
driver.close();
}
}
The result of the above program is

Congratulations!! We have seen how Selenium tests are parameterized in JUnit5. Happy Learning.