How to disable a test case in testNG

0 votes
Is there a way by which I can skip a test case or make the test case not execute in testNG?

Please help. Thank you in advance.
Jan 3, 2019 in Selenium by Nitesh
• 3,080 points
1,865 views

1 answer to this question.

0 votes

You can use the enable method to do so. Enable gives you the liberty of hiding a test case such that it wont be executed. 

Here is an example:-

package testNG;
import org.testng.annotations.Test;
public class Test2 {
  @Test (enabled = true )
  public void g1() 
  {
  System.out.println("test case 1");
  }
  @Test (enabled = true )
  public void g2() 
  {
  System.out.println("test case 2");
  }
  @Test (enabled = false )
  public void g3() 
  {
  System.out.println("test case 3");
  }
  @Test (enabled = true )
  public void g4() 
  {
  System.out.println("test case 4");
  }
}
answered Jan 3, 2019 by Nabarupa

Related Questions In Selenium

0 votes
1 answer

How to pass parameter through testng.xml file to a test case in Selenium Webdriver?

Hello Revathi, to pass parameter through testng.xml ...READ MORE

answered Jun 12, 2019 in Selenium by Abha
• 28,140 points
7,304 views
0 votes
1 answer

How to set test case priority in TestNG?

@Rumani, you can set test case priority ...READ MORE

answered Jun 4, 2019 in Selenium by Harry
3,374 views
0 votes
1 answer

How to run a group of test cases using TestNG in Selenium Webdriver?

Hey Kajal, TestNG allows you to perform ordered ...READ MORE

answered Jun 12, 2019 in Selenium by Abha
• 28,140 points
2,714 views
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,765 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,629 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,703 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,566 views
0 votes
1 answer

How to create a test case with TestNG in Selenium?

Hey Deepak, to create a Test Case ...READ MORE

answered May 22, 2019 in Selenium by Abha
• 28,140 points
992 views
0 votes
1 answer

How to write a test case in Selenium IDE?

Hey Sam, to write a test case ...READ MORE

answered May 14, 2019 in Selenium by Pratibha
• 3,690 points
2,420 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP