How to skip a particular test method in TestNG?


We can skip a particular test method in TestNG. To overlook a particular test method from execution in TestNG enabled helper attribute is used. This attribute has to be set to false to overlook a test method from execution. Code Implementation of Java class file.

@Test(enabled=false)
public void verifyRepay(){
   System.out.println("Repayment successful");
}
@Test
public void Login(){
   System.out.println("Login is successful ");
}
@Test
public verifyHistory(){
   System.out.println ("History verification is successful");
}

Here the verifyRepay() method shall be overlooked during execution.

Updated on: 19-Nov-2021

732 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements