0 votes
in Testing by

How to skip a method or a code block in TestNG?

1 Answer

0 votes
by
To skip a particular test method or a code, then you can set the ‘enabled’ parameter in test annotation to false.

@Test(enabled = false)
...