You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
-
- <actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
- <actionGroup name="CreateOrderToPrintPageActionGroup">
- <annotations>
- <description>Goes to the provided Storefront Category page. Adds the Product to the Cart. Places the Order. Clicks on Print Order.</description>
- </annotations>
- <arguments>
- <argument name="Category"/>
- </arguments>
-
- <amOnPage url="{{StorefrontCategoryPage.url(Category.name)}}" stepKey="onCategoryPage"/>
- <waitForPageLoad stepKey="waitForPageLoad1"/>
- <moveMouseOver selector="{{StorefrontCategoryMainSection.ProductItemInfo}}" stepKey="hoverProduct"/>
- <click selector="{{StorefrontCategoryMainSection.AddToCartBtn}}" stepKey="addToCart"/>
- <waitForElementVisible selector="{{StorefrontCategoryMainSection.SuccessMsg}}" time="30" stepKey="waitForProductAdded"/>
- <click selector="{{StorefrontMinicartSection.showCart}}" stepKey="clickCart"/>
- <click selector="{{StorefrontMinicartSection.goToCheckout}}" stepKey="goToCheckout"/>
- <waitForPageLoad stepKey="waitForPageLoad2"/>
- <waitForPageLoad stepKey="waitForLoadingMask"/>
- <click selector="{{CheckoutShippingMethodsSection.firstShippingMethod}}" stepKey="selectFirstShippingMethod"/>
- <waitForPageLoad stepKey="waitForLoadingMask2"/>
- <waitForElement selector="{{CheckoutShippingMethodsSection.next}}" time="30" stepKey="waitForNextButton"/>
- <click selector="{{CheckoutShippingMethodsSection.next}}" stepKey="clickNext"/>
- <waitForElement selector="{{CheckoutPaymentSection.placeOrder}}" time="30" stepKey="waitForPlaceOrderButton"/>
- <click selector="{{CheckoutPaymentSection.placeOrder}}" stepKey="clickPlaceOrder"/>
- <click selector="{{CheckoutSuccessMainSection.orderLink}}" stepKey="clickOrderLink"/>
- <click selector="{{StorefrontCustomerOrderViewSection.printOrderLink}}" stepKey="clickPrintOrderLink"/>
- </actionGroup>
- </actionGroups>
|