Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

TestNG Tutorials 42: Parameters In TestNG or Parameterization of Methods in a TestNG Class

Posted on 02/19/2025 By admin

Hello Folks,

Arguments or Parameters help us to achieve reusability of codes and cleanliness of codes. We can do overloading of methods using different number, types and order of parameters to serve differently for different set of values.

TestNG also allows you to parameterized your tests. We will see how can we achieve parameterisation of methods in a TestNG class.

Usage of parameterized methods of TestNG in Selenium:

Some real time examples are as below:

  1. You need to login to your application with different users with different roles. You can not create multiple methods for each user with role type. Instead of that you can create a parameterized methods which will accept user type and login as required.
  2. You may need to connect different databases and each database may have different credentials. This can be achieved easily using parameterized methods.

You can parameterized @Test annotated methods as well as @BeforeXXXX @AfterXXXX methods. It is not like that you can parameterized on test methods. It is an interview question. 

Let’ create some configuration methods and test methods with parameters:

[java]
package Parameters;

import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod;

import org.testng.annotations.Test;

Uncategorized

Post navigation

Previous Post: Handling Frames/IFrames In Selenium WebDriver : Part 3
Next Post: TestNG Tutorials 30: Groups Attribute at Class Level In TestNG

Related Posts

image – Make Selenium Easy Uncategorized
Reading Data From CSV in Postman Uncategorized
protractr Uncategorized
Why Do We Require Browser Driver Executable File To Launch A Browser In Selenium WebDriver? Uncategorized
Using Thread.sleep() in Selenium WebDriver Uncategorized
ConsoleStarted – Make Selenium Easy Uncategorized

Recent Posts

  • Getting Started with Selenium 4: What Is New and How to Upgrade from Selenium 3
  • Manual Testing
  • Baby Steps To Become Efficient Selenium-Java Automation Tester
  • Features of Selenium 4.0.0 Release – Java Binding
  • Part 1: Handling Drop-down Created Using SELECT Tag In Selenium

Recent Comments

No comments to show.

Archives

  • April 2026
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • April 2024
  • March 2024
  • February 2024
  • December 2023
  • October 2023
  • August 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • May 2022
  • March 2022
  • October 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • October 2020
  • September 2020
  • August 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • May 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • January 2018

Categories

  • Getting Started
  • Uncategorized

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark