Skip to content

Commit 0919deb

Browse files
committed
corrected a typo
1 parent 865bf66 commit 0919deb

6 files changed

+26
-5
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="StorefrontCheckRefundGrandTotalActionGroup">
12+
<annotations>
13+
<description>Checks if Refund Grand Total is equal to the provided value.</description>
14+
</annotations>
15+
<arguments>
16+
<argument name="grandTotal" type="string"/>
17+
</arguments>
18+
19+
<see selector="{{StorefrontCustomerOrderSection.grandTotalRefund}}" userInput="{{grandTotal}}" stepKey="seeGrandTotal"/>
20+
</actionGroup>
21+
</actionGroups>

app/code/Magento/Sales/Test/Mftf/Test/AdminCreateCreditMemoBankTransferPaymentTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
<waitForPageLoad stepKey="waitForViewOrder"/>
136136
<actionGroup ref="StorefrontClickRefundTabCustomerOrderViewActionGroup" stepKey="clickRefund"/>
137137
<comment userInput="Comment is added to preserve the step key for backward compatibility" stepKey="scrollToGrandTotal"/>
138-
<actionGroup ref="StorefrontCheckRefundHGrandTotalActionGroup" stepKey="seeGrandTotal">
138+
<actionGroup ref="StorefrontCheckRefundGrandTotalActionGroup" stepKey="seeGrandTotal">
139139
<argument name="grandTotal" value="555.00"/>
140140
</actionGroup>
141141
</test>

app/code/Magento/Sales/Test/Mftf/Test/AdminCreateCreditMemoForOrderWithCashOnDeliveryTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
</actionGroup>
9595

9696
<actionGroup ref="StorefrontClickRefundTabCustomerOrderViewActionGroup" stepKey="clickRefund"/>
97-
<actionGroup ref="StorefrontCheckRefundHGrandTotalActionGroup" stepKey="seeGrandTotal">
97+
<actionGroup ref="StorefrontCheckRefundGrandTotalActionGroup" stepKey="seeGrandTotal">
9898
<argument name="grandTotal" value="555.00"/>
9999
</actionGroup>
100100
</test>

app/code/Magento/Sales/Test/Mftf/Test/AdminCreateCreditMemoPartialRefundTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<actionGroup ref="StorefrontClickRefundTabCustomerOrderViewActionGroup" stepKey="clickRefund"/>
131131
<scrollTo selector="{{StorefrontCustomerOrderSection.grandTotalRefund}}" stepKey="scrollToGrandTotal"/>
132132

133-
<actionGroup ref="StorefrontCheckRefundHGrandTotalActionGroup" stepKey="seeGrandTotal">
133+
<actionGroup ref="StorefrontCheckRefundGrandTotalActionGroup" stepKey="seeGrandTotal">
134134
<argument name="grandTotal" value="110.00"/>
135135
</actionGroup>
136136

app/code/Magento/Sales/Test/Mftf/Test/AdminCreateCreditMemoWithCashOnDeliveryTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
<waitForPageLoad stepKey="waitForViewOrder"/>
126126
<actionGroup ref="StorefrontClickRefundTabCustomerOrderViewActionGroup" stepKey="clickRefund"/>
127127
<scrollTo selector="{{StorefrontCustomerOrderSection.grandTotalRefund}}" stepKey="scrollToGrandTotal"/>
128-
<actionGroup ref="StorefrontCheckRefundHGrandTotalActionGroup" stepKey="seeGrandTotal">
128+
<actionGroup ref="StorefrontCheckRefundGrandTotalActionGroup" stepKey="seeGrandTotal">
129129
<argument name="grandTotal" value="555.00"/>
130130
</actionGroup>
131131
</test>

app/code/Magento/Sales/Test/Mftf/Test/AdminCreateCreditMemoWithPurchaseOrderTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<waitForPageLoad stepKey="waitForViewOrder"/>
122122
<actionGroup ref="StorefrontClickRefundTabCustomerOrderViewActionGroup" stepKey="clickRefund"/>
123123
<scrollTo selector="{{StorefrontCustomerOrderSection.grandTotalRefund}}" stepKey="scrollToGrandTotal"/>
124-
<actionGroup ref="StorefrontCheckRefundHGrandTotalActionGroup" stepKey="seeGrandTotal">
124+
<actionGroup ref="StorefrontCheckRefundGrandTotalActionGroup" stepKey="seeGrandTotal">
125125
<argument name="grandTotal" value="555.00"/>
126126
</actionGroup>
127127
</test>

0 commit comments

Comments
 (0)