forked from mohangowdak/SDET46_SeleniumFramwork
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestng_parallel.xml
More file actions
24 lines (22 loc) · 1.01 KB
/
testng_parallel.xml
File metadata and controls
24 lines (22 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="tests">
<test name="Test" thread-count="2" parallel="classes">
<parameter name="browser" value="chrome"/>
<classes>
<class name="crm.vtiger.organization.SelectOrganizationInListTest"/>
<class name="crm.vtiger.contacts.CreateContactTest"/>
<class name="crm.vtiger.organization.SelectDateInOrgCalenderTest"/>
<class name="crm.vtiger.contacts.CreateContactWithOrganizationTest"/>
</classes>
</test> <!-- Test -->
<test name="Test1" parallel="classes">
<parameter name="browser" value="firefox"/>
<classes>
<class name="crm.vtiger.organization.SelectOrganizationInListTest"/>
<class name="crm.vtiger.contacts.CreateContactTest"/>
<class name="crm.vtiger.organization.SelectDateInOrgCalenderTest"/>
<class name="crm.vtiger.contacts.CreateContactWithOrganizationTest"/>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->