TestNG @Test attributes – enabled property
There are situations where we need to skip one or more @Test method in testNG, for this TestNG provides enabled property to skip the execution of methods… enabled = false (skip the method run) enabled = true (execute method), it’s by default set to true, NOTE: if we do not mention enabled property, it’s set…