Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

TestNG Tutorials 63: Dependency in TestNG – Usage of Regular Expressions with DependsOnGroup

Posted on 02/19/2025 By admin

Hello Folks,

We have learnt in previous posts regarding establishing relationship between test methods. You can go through them below:

Dependency in TestNG – Creating Dependency Among Test Methods – DependsOnMethod

Dependency in TestNG – Creating Dependency Among Test Methods – DependsOnGroup

In this post, we will learn how can we use regular expressions with DependsOnGroup.

Regular expression helps you in defining a pattern for similar items. If your test is dependent on multiple groups of tests, either you can pass each group name in dependsOnGroups array or pass  regular expressions if group names follows a pattern. We will see examples below:

package Dependecy;

import org.testng.annotations.Test;

public class RegularExpressionsInDependsOnGroups {

        // Test belong to Group registration
        @Test(groups = "registration", priority= 1)
        public void signUp() {
                System.out.println("Signed Up");
        }

        // Test belong to Group registrationStatus
        @Test(groups = "registrationStatus",  priority= 2)
        public void verifyRegistration() {
                System.out.println("Registration Was successful");
        }

        // Tests belong to group login
        @Test(groups = "login",  priority= 3)
        public void logIn() {
                System.out.println("Logged In");
        }

        // Tests belong to group loginStatus
        @Test(groups = "loginStatus",  priority= 4)
        public void verifyLogIn() {
                System.out.println("Log In was successful.");
        }

        // This test is dependent on all above groups. You need to mention all group names explicitly here. 
        @Test(dependsOnGroups = { "registration", "login", "registrationStatus", "loginStatus" })
        public void purchaseSomething() {
                System.out.println("purchased Something");
        }
}

Output:

[java] [RemoteTestNG] detected TestNG version 6.14.2 Signed Up Registration Was successful Logged In Log In was successful. purchased Something PASSED: signUp PASSED: verifyRegistration PASSED: logIn PASSED: verifyLogIn

PASSED: purchaseSomething

Uncategorized

Post navigation

Previous Post: Selenium Interview Question 3 – Difference Between get() and navigate() Methods of Selenium WebDriver
Next Post: Postman Tutorial Part 15 – Adding Automation Test Scripts In Postman

Related Posts

TestNG Tutorials 54: DataProvider in TestNG – Implementing Object Oriented Concept “Encapsulation” with DataProvider Method Uncategorized
getOrDefault() – A Method Of Map Interface In Java Uncategorized
Learn About Less Talked & Used XPath Function – position() Uncategorized
Introduction to JSONassert Uncategorized
Postman Tutorial Part 3 – Sending First GET Request in Postman – Make Selenium Easy Uncategorized
Postman Tutorial Part 9 – DIfference Between Put and Patch HTTP Methods 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