-
Notifications
You must be signed in to change notification settings - Fork 0
/
tu.xml
27 lines (21 loc) · 918 Bytes
/
tu.xml
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
26
27
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<suite name="Unit test suite" parallel="methods" verbose="1" thread-count="1" configfailurepolicy="continue">
<parameter name="implicitWaitTimeOut" value="2"></parameter>
<parameter name="browser" value="opera" />
<parameter name="app" value="https://www.test.google.fr" />
<parameter name="aParam" value="value1" />
<parameter name="anOtherParam" value="value2" />
<parameter name="variable1" value="value4" />
<parameter name="testConfig" value="exampleConfigGenericParams.xml" />
<parameter name="devMode" value="true" />
<test name="Unit tests" parallel="false">
<groups>
<run>
<include name="grid"/>
</run>
</groups>
<packages>
<package name="com.infotel.seleniumrobot.*" />
</packages>
</test>
</suite>