Skip to content

Commit

Permalink
#30255: Fixed The coupon code has been accepted message
Browse files Browse the repository at this point in the history
Removed comments
  • Loading branch information
shikhamis11 committed Nov 4, 2020
1 parent 15fdf8d commit 2362ad9
Showing 1 changed file with 0 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,90 +18,50 @@
<group value="sales"/>
</annotations>
<before>
<!-- Login as admin -->
<actionGroup ref="AdminLoginActionGroup" stepKey="LoginAsAdmin"/>

<!-- Create customer -->
<createData entity="Simple_US_Customer" stepKey="createCustomer"/>

<!-- Create simple product -->
<createData entity="SimpleProduct2" stepKey="createSimpleProduct">
<field key="price">10</field>
</createData>

<!-- Create sales rule with coupon -->
<createData entity="SalesRuleSpecificCouponWithFixedDiscount" stepKey="createCartPriceRule"/>
<createData entity="SimpleSalesRuleCoupon" stepKey="createCouponForCartPriceRule">
<requiredEntity createDataKey="createCartPriceRule"/>
</createData>

<!-- Enable Bank Transfer payment -->
<magentoCLI
command="config:set {{EnablePaymentBankTransferConfigData.path}} {{EnablePaymentBankTransferConfigData.value}}"
stepKey="enableBankTransferPayment"/>

<!--Set default flat rate shipping method settings-->
<magentoCLI command="config:set {{EnableFlatRateConfigData.path}} {{EnableFlatRateConfigData.value}}"
stepKey="enableFlatRate"/>
</before>
<after>
<!-- Disable Bank Transfer payment -->
<magentoCLI
command="config:set {{DisablePaymentBankTransferConfigData.path}} {{DisablePaymentBankTransferConfigData.value}}"
stepKey="disableBankTransferPayment"/>

<!--Disable flat rate shipping method-->
<magentoCLI command="config:set {{DisableFlatRateConfigData.path}} {{DisableFlatRateConfigData.value}}"
stepKey="disableFlatRate"/>

<!-- Delete sales rule -->
<deleteData createDataKey="createCartPriceRule" stepKey="deleteCartPriceRule"/>

<!-- Delete customer -->
<deleteData createDataKey="createCustomer" stepKey="deleteCustomer"/>

<!-- Delete product -->
<deleteData createDataKey="createSimpleProduct" stepKey="deleteSimpleProduct"/>

<!-- Log out -->
<actionGroup ref="AdminLogoutActionGroup" stepKey="logout"/>
</after>

<!-- Create order -->
<actionGroup ref="NavigateToNewOrderPageExistingCustomerActionGroup" stepKey="goToCreateOrderPage">
<argument name="customer" value="$$createCustomer$$"/>
</actionGroup>

<!-- Add product to order -->
<actionGroup ref="AddSimpleProductToOrderActionGroup" stepKey="addProductToOrder">
<argument name="product" value="$$createSimpleProduct$$"/>
</actionGroup>

<!-- Apply coupon to the order -->
<actionGroup ref="AdminApplyCouponToOrderActionGroup" stepKey="applyCoupon">
<argument name="couponCode" value="$$createCouponForCartPriceRule.code$$"/>
</actionGroup>

<!-- Remove coupon from the order -->
<actionGroup ref="AdminRemoveCouponFromOrderActionGroup" stepKey="removeCoupon"/>

<!--Select FlatRate shipping method-->
<actionGroup ref="AdminSelectFlatRateShippingMethodActionGroup" stepKey="selectFlatRateShippingMethod"/>

<!-- Select bank Transfer payment method -->
<waitForElementVisible selector="{{AdminOrderFormPaymentSection.paymentBlock}}"
stepKey="waitForPaymentOptions"/>
<conditionalClick selector="{{AdminOrderFormPaymentSection.bankTransferOption}}"
dependentSelector="{{AdminOrderFormPaymentSection.bankTransferOption}}" visible="true"
stepKey="checkBankTransferOption"/>

<!-- Submit order -->
<actionGroup ref="AdminSubmitOrderActionGroup" stepKey="submitOrder"/>

<!-- Grab order id -->
<grabTextFrom selector="|Order # (\d+)|" stepKey="getOrderId"/>

<!-- Open created order -->
<amOnPage url="{{AdminOrdersPage.url}}" stepKey="goToOrdersPage"/>
<waitForPageLoad stepKey="waitForOrdersPageLoad"/>
<actionGroup ref="FilterOrderGridByIdActionGroup" stepKey="filterOrdersGridById">
Expand Down

0 comments on commit 2362ad9

Please sign in to comment.