forked from magento/magento2-functional-testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommonAttributes.xsd
25 lines (25 loc) · 979 Bytes
/
commonAttributes.xsd
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
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:attributeGroup name="commonActionAttributes">
<xs:attribute type="xs:string" name="stepKey" use="required">
<xs:annotation>
<xs:documentation>
Test action's unique identifier.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute type="xs:string" name="before">
<xs:annotation>
<xs:documentation>
stepKey of action that must be executed next.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute type="xs:string" name="after">
<xs:annotation>
<xs:documentation>
stepKey of preceding action.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
</xs:schema>