1.

Is it possible to skip a method or a code block in TestNG?

Answer»

Yes, you can skip a particular test method or code by setting the 'enabled' parameter to ‘false’ in test annotations.

@Test(enabled = false).




Discussion

No Comment Found