Closed archick12 closed 6 years ago
in testng.xml insead of groups <include name="UI"/>: <packages> <package name="ui"/> </packages> add inclusion of group "wip"
<include name="UI"/>
<packages>
<package name="ui"/>
</packages>
in utils.ListenerTest.java: change if-statement's condition to package.contains("ui") instead of group.contains("UI") and update releted code
package.contains("ui")
group.contains("UI")
delete "UI" from groups in @Test annotation in all test methods as they are deprecated
That suggestion was the wrong way. Implemented using beanshell script in testng.xml
in testng.xml insead of groups
<include name="UI"/>
:<packages>
<package name="ui"/>
</packages>
add inclusion of group "wip"in utils.ListenerTest.java: change if-statement's condition to
package.contains("ui")
instead ofgroup.contains("UI")
and update releted codedelete "UI" from groups in @Test annotation in all test methods as they are deprecated