-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathSampleSuiteTest.xml
50 lines (49 loc) · 1.98 KB
/
SampleSuiteTest.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../src/Magento/FunctionalTestingFramework/Test/etc/testSchema.xsd">
<test name="IncludeTest">
<amOnPage stepKey="testOnPage" url="/someUrl"/>
<see stepKey="seeThePage" selector=".someSelector"/>
<click stepKey="clickOnSomething" selector=".clickable"/>
<fillField stepKey="fillAField" selector=".fillable"/>
</test>
<test name="ExcludeTest">
<amOnPage stepKey="testOnPage" url="/someUrl"/>
<see stepKey="seeThePage" selector=".someSelector"/>
<click stepKey="clickOnSomething" selector=".clickable"/>
<fillField stepKey="fillAField" selector=".fillable"/>
</test>
<test name="IncludeTest2">
<annotations>
<group value="include"/>
</annotations>
<amOnPage stepKey="testOnPage" url="/someUrl"/>
<see stepKey="seeThePage" selector=".someSelector"/>
<click stepKey="clickOnSomething" selector=".clickable"/>
<fillField stepKey="fillAField" selector=".fillable"/>
</test>
<test name="additionalTest">
<annotations>
<group value="include"/>
</annotations>
<amOnPage stepKey="testOnPage" url="/someUrl"/>
<see stepKey="seeThePage" selector=".someSelector"/>
<click stepKey="clickOnSomething" selector=".clickable"/>
<fillField stepKey="fillAField" selector=".fillable"/>
</test>
<test name="ExcludeTest2">
<annotations>
<group value="include"/>
</annotations>
<amOnPage stepKey="testOnPage" url="/someUrl"/>
<see stepKey="seeThePage" selector=".someSelector"/>
<click stepKey="clickOnSomething" selector=".clickable"/>
<fillField stepKey="fillAField" selector=".fillable"/>
</test>
</tests>