@@ -177,14 +177,14 @@ Extend an [action group] to add or update [actions] in your module.
177
177
178
178
### Update an action
179
179
180
- __ Use case__ : The ` CountProductA ` test counts the particular product.
180
+ __ Use case__ : The ` AssertAdminCountProductActionGroup ` action group counts the particular product.
181
181
Modify the action group to use another product.
182
182
183
183
> Action groups with "extends":
184
184
185
185
``` xml
186
186
<actionGroups >
187
- <actionGroup name =" CountProductA " >
187
+ <actionGroup name =" AssertAdminCountProductActionGroup " >
188
188
<arguments >
189
189
<argument name =" count" type =" string" />
190
190
</arguments >
@@ -195,7 +195,7 @@ Modify the action group to use another product.
195
195
</assertCount >
196
196
</actionGroup >
197
197
198
- <actionGroup name =" CountProductB " extends =" CountProductA " >
198
+ <actionGroup name =" AssertAdminOtherCountProductActionGroup " extends =" AssertAdminCountProductActionGroup " >
199
199
<grabMultiple selector =" selectorForProductB" stepKey =" grabProducts" />
200
200
</actionGroup >
201
201
</actionGroups >
@@ -205,7 +205,7 @@ Modify the action group to use another product.
205
205
206
206
``` xml
207
207
<actionGroups >
208
- <actionGroup name =" CountProductA " >
208
+ <actionGroup name =" AssertAdminCountProductActionGroup " >
209
209
<arguments >
210
210
<argument name =" count" type =" string" />
211
211
</arguments >
@@ -216,7 +216,7 @@ Modify the action group to use another product.
216
216
</assertCount >
217
217
</actionGroup >
218
218
219
- <actionGroup name =" CountProductB " >
219
+ <actionGroup name =" AssertAdminOtherCountProductActionGroup " >
220
220
<arguments >
221
221
<argument name =" count" type =" string" />
222
222
</arguments >
@@ -231,21 +231,21 @@ Modify the action group to use another product.
231
231
232
232
### Add an action
233
233
234
- __ Use case__ : The ` GetProductCount ` action group returns the count of products.
235
- Add a new test ` VerifyProductCount ` that asserts the count of products:
234
+ __ Use case__ : The ` AdminGetProductCountActionGroup ` action group returns the count of products.
235
+ Add a new test ` AssertAdminVerifyProductCountActionGroup ` that asserts the count of products:
236
236
237
237
> Action groups with "extends":
238
238
239
239
``` xml
240
240
<actionGroups >
241
- <actionGroup name =" GetProductCount " >
241
+ <actionGroup name =" AdminGetProductCountActionGroup " >
242
242
<arguments >
243
243
<argument name =" productSelector" type =" string" />
244
244
</arguments >
245
245
<grabMultiple selector =" {{productSelector}}" stepKey =" grabProducts" />
246
246
</actionGroup >
247
247
248
- <actionGroup name =" VerifyProductCount " extends =" GetProductCount " >
248
+ <actionGroup name =" AssertAdminVerifyProductCountActionGroup " extends =" AdminGetProductCountActionGroup " >
249
249
<arguments >
250
250
<argument name =" count" type =" string" />
251
251
</arguments >
@@ -261,14 +261,14 @@ Add a new test `VerifyProductCount` that asserts the count of products:
261
261
262
262
``` xml
263
263
<actionGroups >
264
- <actionGroup name =" GetProductCount " >
264
+ <actionGroup name =" AdminGetProductCountActionGroup " >
265
265
<arguments >
266
266
<argument name =" productSelector" type =" string" />
267
267
</arguments >
268
268
<grabMultiple selector =" {{productSelector}}" stepKey =" grabProducts" />
269
269
</actionGroup >
270
270
271
- <actionGroup name =" VerifyProductCount " >
271
+ <actionGroup name =" AssertAdminVerifyProductCountActionGroup " >
272
272
<arguments >
273
273
<argument name =" count" type =" string" />
274
274
<argument name =" productSelector" type =" string" />
0 commit comments