Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • About Us
  • 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

java quiz Uncategorized
Frequently Asked Java Program 23: Java Program to Remove Extra WhiteSpace Between Words In Given String | Make Selenium Easy Uncategorized
May 22, 2018 – Make Selenium Easy Uncategorized
DateSelected – Make Selenium Easy Uncategorized
Advanced TestNG Tutorials 35: How To Pass Multiple Group Names to be Run at Runtime in TestNG XML Using Beanshell Uncategorized
REST Assured Tutorial 75 – What Is Serialization And Deserialization In Rest Assured? Uncategorized

Recent Posts

  • Writing Your First Selenium Test Case: A Complete Beginner Guide
  • Understanding Selenium Architecture and How WebDriver Works Internally
  • How to Set Up Selenium WebDriver with Python Step by Step
  • How to Set Up Selenium WebDriver with Java from Scratch
  • What Is Selenium and Why It Is the Most Popular Test Automation Framework

Recent Comments

No comments to show.

Archives

  • May 2026
  • 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