Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

TestNG Tutorials 67 : Difference Between @Ignore & enabled Attribute of @Test Method in TestNG

Posted on 03/16/2025 By admin

Hello Folks,

In last post, we have learnt about new annotation of TestNG , named @Ignore which is used to ignore @Test annotated methods at different levels i.e. Method, Class and Package.

We have another attribute of Test annotation named “enabled” which is also used to serve the same purpose. So what are the differences between both the ways and when to use? We will going to see about them in this post.

At Test method level:

At this level, @Ignore and “enabled=false” both are same. Both will do the same task i.e. will ignore the Test. So at this level, you can use either.

At Class level:

You will start getting the advantages of @Ignore here. Consider, You need to ignore all Test method of a class and its subclass. You have many ways to achieve that. You can exclude class from testng xml or you can go to each Test method and put “enabled” as false. Your task will be easier if you have @Test annotation at class level as you can set “enabled” as false at class level itself. But it will be overridden if Test method of class has @Test annotation.  See an example below:

package IgnoreExamples;


import org.testng.annotations.Test;

/*
 * At class level we are setting enabled as false but at Test method level, it is overriding the behavior. 
 * So, it will be difficult to do modification at each method level. 
 */
@Test(enabled=false)
public class TestAtClassLevel {

        
        
        @Test
        public void method1()
        {
                System.out.println("Method1");
        }
        
        @Test
        public void method2()
        {
                System.out.println("Method2");
        }
}



Output:

[java] [RemoteTestNG] detected TestNG version 6.14.3 Method1 Method2 PASSED: method1

PASSED: method2

Uncategorized

Post navigation

Previous Post: selenium testng tutorials
Next Post: API Testing Tutorial Part 5 – Safe Methods in HTTP Methods

Related Posts

ScrollInToView1 – Make Selenium Easy Uncategorized
image – Make Selenium Easy Uncategorized
image – Make Selenium Easy Uncategorized
ransom notes Uncategorized
July 24, 2018 – Make Selenium Easy Uncategorized
Singleton Design Pattern In Selenium WebDriver 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