1.

How To Exclude A Particular Test Group From A Test Case Execution?

Answer»

By ADDING the exclude tag in the testng.xml

  1. <GROUPS&GT;
  2. <run>
  3.  <exclude NAME="TestGroupNameToExclude"/>
  4. </run>
  5. </groups>

By adding the exclude tag in the testng.xml



Discussion

No Comment Found