-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestng_runner.xml
More file actions
27 lines (20 loc) · 1.02 KB
/
testng_runner.xml
File metadata and controls
27 lines (20 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<suite name="Vytrack Automation" verbose="1">
<test name="Vytrack Smoke Test">
<!-- <packages> run to package
<package name="com.cybertek.tests.day14_extent_reports"></package>
<package name="com.cybertek.tests.day11_webtables"></package>
<package name=".*"></package> run everything(all packeges) - (BATCH RUN) -->
<!-- </packages> -->
<classes>
<!-- <class name = "com.cybertek.tests.day14_extent_reports.NegativeLoginTestWithReport"></class> to run class-->
<class name = "com.cybertek.tests.day11_webtables.WebTablesExample">
<methods>
<!-- <include name="getAllHeaders"></include> to run test case -->
<!--<include name="printTableSize"></include> -->
<exclude name="getAllCellInOneRow"></exclude>
</methods>
</class>
</classes>
</test>
</suite>