-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestng.xml
More file actions
24 lines (20 loc) · 783 Bytes
/
Copy pathtestng.xml
File metadata and controls
24 lines (20 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<!--
Full regression suite.
parallel="methods" with a thread count is what the ThreadLocal driver exists
to support: each test method gets its own thread and its own browser.
-->
<suite name="Regression" parallel="methods" thread-count="3" verbose="1">
<listeners>
<listener class-name="com.deepakkhatri.qa.listeners.TestListener"/>
</listeners>
<test name="UI Regression">
<classes>
<class name="com.deepakkhatri.qa.tests.LoginTests"/>
<class name="com.deepakkhatri.qa.tests.InventoryTests"/>
<class name="com.deepakkhatri.qa.tests.CartTests"/>
<class name="com.deepakkhatri.qa.tests.CheckoutTests"/>
</classes>
</test>
</suite>