KpAddToCartActionGroup.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * This file is part of the Klarna KP module
  5. *
  6. * (c) Klarna Bank AB (publ)
  7. *
  8. * For the full copyright and license information, please view the NOTICE
  9. * and LICENSE files that were distributed with this source code.
  10. */
  11. -->
  12. <actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13. xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
  14. <actionGroup name="KpAddToCart">
  15. <arguments>
  16. <argument name="purchaseQty" defaultValue="1" type="string"/>
  17. </arguments>
  18. <amOnPage url="{{KpStorefrontCategoryPage.url($$createCategory.name$$)}}" stepKey="onCategoryPage"/>
  19. <waitForPageLoad stepKey="waitForPageLoad1"/>
  20. <wait stepKey="productWait1" time="5"/>
  21. <moveMouseOver selector="{{KpStorefrontCategoryMainSection.ProductItemInfo}}" stepKey="hoverProduct"/>
  22. <wait stepKey="productWait2" time="2"/>
  23. <click selector="{{KpStorefrontCategoryMainSection.ProductCategoryImage}}" stepKey="clickOnProduct"/>
  24. <wait stepKey="productWait3" time="2"/>
  25. <fillField selector="{{KpProductDetailSection.QtyField}}" userInput="{{purchaseQty}}" stepKey="kpEnterPurchaseQty"/>
  26. <click selector="{{KpProductDetailSection.AddToCartButton}}" stepKey="addToCart"/>
  27. <waitForElementVisible selector="{{KpStorefrontCategoryMainSection.SuccessMsg}}" time="30"
  28. stepKey="waitForProductAdded"/>
  29. <see selector="{{KpStorefrontCategoryMainSection.SuccessMsg}}"
  30. userInput="You added $$createProduct.name$$ to your shopping cart." stepKey="seeAddedToCartMessage"/>
  31. <wait stepKey="productWait3" time="5"/>
  32. <see selector="{{KpStorefrontMiniCartSection.quantity}}" userInput="{{purchaseQty}}" stepKey="seeCartQuantity"/>
  33. <wait stepKey="productWait4" time="5"/>
  34. <click selector="{{KpStorefrontMiniCartSection.show}}" stepKey="clickCart"/>
  35. <wait stepKey="productWait5" time="5"/>
  36. <click selector="{{KpStorefrontMiniCartSection.goToCheckout}}" stepKey="goToCheckout"/>
  37. <waitForPageLoad stepKey="waitForPageLoad2"/>
  38. </actionGroup>
  39. </actionGroups>