Answers for "how to exclude part of test in testng"

0

how to exclude part of test in testng

By adding the exclude tag in the testing.xml

<classes>
	<class name="TestCaseName">
    	<methods>
    		<exclude name="TestMethodNameToExclude"/>
        </methods>
    </class>
</classes>
Posted by: Guest on December-07-2020

Browse Popular Code Answers by Language