@@ -22,13 +22,13 @@ This step can be referenced within the test using `conditionalClickStep1`.
22
22
23
23
The value format should met the following principles:
24
24
25
- * Must be unique within [ ` <test> ` ] ( ../test.md#test-tag ) .
26
- * Naming should be as descriptive as possible:
27
- * Describe the action performed.
28
- * Briefly describe the purpose.
29
- * Describe which data is in use.
30
- * Should be in camelCase with lowercase first letter.
31
- * Should be the last attribute of an element.
25
+ * Must be unique within [ ` <test> ` ] ( ../test.md#test-tag ) .
26
+ * Naming should be as descriptive as possible:
27
+ * Describe the action performed.
28
+ * Briefly describe the purpose.
29
+ * Describe which data is in use.
30
+ * Should be in camelCase with lowercase first letter.
31
+ * Should be the last attribute of an element.
32
32
33
33
### ` before ` and ` after `
34
34
@@ -142,25 +142,25 @@ Here, [`<click>`](#click) performs a click on a button that can be found by the
142
142
143
143
The following test actions return a variable:
144
144
145
- * [ grabAttributeFrom] ( #grabattributefrom )
146
- * [ grabCookie] ( #grabcookie )
147
- * [ grabFromCurrentUrl] ( #grabfromcurrenturl )
148
- * [ grabMultiple] ( #grabmultiple )
149
- * [ grabPageSource] ( #grabpagesource )
150
- * [ grabTextFrom] ( #grabtextfrom )
151
- * [ grabValueFrom] ( #grabvaluefrom )
152
- * [ executeJS] ( #executejs )
145
+ * [ grabAttributeFrom] ( #grabattributefrom )
146
+ * [ grabCookie] ( #grabcookie )
147
+ * [ grabFromCurrentUrl] ( #grabfromcurrenturl )
148
+ * [ grabMultiple] ( #grabmultiple )
149
+ * [ grabPageSource] ( #grabpagesource )
150
+ * [ grabTextFrom] ( #grabtextfrom )
151
+ * [ grabValueFrom] ( #grabvaluefrom )
152
+ * [ executeJS] ( #executejs )
153
153
154
154
Learn more in [ Using data returned by test actions] ( ../data.md#use-data-returned-by-test-actions ) .
155
155
156
156
## Actions handling data entities
157
157
158
158
The following test actions handle data entities using [ metadata] ( ../metadata.md ) :
159
159
160
- * [ createData] ( #createdata )
161
- * [ deleteData] ( #deletedata )
162
- * [ updateData] ( #updatedata )
163
- * [ getData] ( #getdata )
160
+ * [ createData] ( #createdata )
161
+ * [ deleteData] ( #deletedata )
162
+ * [ updateData] ( #updatedata )
163
+ * [ getData] ( #getdata )
164
164
165
165
Learn more in [ Handling a REST API response] ( ../metadata.md#rest-response ) .
166
166
@@ -1289,7 +1289,6 @@ Attribute|Type|Use|Description
1289
1289
` before ` |string|optional| ` stepKey ` of action that must be executed next.
1290
1290
` after ` |string|optional| ` stepKey ` of preceding action.
1291
1291
1292
-
1293
1292
#### Example
1294
1293
``` xml
1295
1294
<magentoCron stepKey =" runStagingCronJobs" groups =" staging" />
@@ -1978,13 +1977,13 @@ Attribute|Type|Use|Description
1978
1977
#### Examples
1979
1978
1980
1979
``` xml
1981
- <!-- Verify there are 10 `<div id ="product" ... >...</div>` elements on the page. -->
1980
+ <!-- Verify there are 10 `<div class ="product" ... >...</div>` elements on the page. -->
1982
1981
<seeNumberOfElements userInput =" 10" selector =" div.product" stepKey =" seeTenProducts" />
1983
1982
```
1984
1983
1985
1984
``` xml
1986
- <!-- Verify there are between 5 and 10 `<div id ="product" ... >...</div>` elements on the page. -->
1987
- <seeNumberOfElements userInput =" [5, 10]" selector =" .product" stepKey =" seeFiveToTenProducts" />
1985
+ <!-- Verify there are between 5 and 10 `<div class ="product" ... >...</div>` elements on the page. -->
1986
+ <seeNumberOfElements parameterArray =" [5, 10]" selector =" div .product" stepKey =" seeFiveToTenProducts" />
1988
1987
```
1989
1988
1990
1989
### seeOptionIsSelected
0 commit comments