Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

30 rader
1.8 KiB

  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. <actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
  10. <!-- Fill Estimate Shipping and Tax fields -->
  11. <actionGroup name="StorefrontCartEstimateShippingAndTaxActionGroup">
  12. <annotations>
  13. <description>Fills in the provided Address details (Country, State and Zip Code) under the 'Summary' section on the Storefront Shopping Cart page.</description>
  14. </annotations>
  15. <arguments>
  16. <argument name="estimateAddress" defaultValue="EstimateAddressCalifornia"/>
  17. </arguments>
  18. <conditionalClick selector="{{CheckoutCartSummarySection.estimateShippingAndTax}}" dependentSelector="{{CheckoutCartSummarySection.country}}" visible="false" stepKey="clickOnEstimateShippingAndTax"/>
  19. <waitForElementVisible selector="{{CheckoutCartSummarySection.country}}" stepKey="waitForCountrySelectorIsVisible"/>
  20. <selectOption selector="{{CheckoutCartSummarySection.country}}" userInput="{{estimateAddress.country}}" stepKey="selectCountry"/>
  21. <waitForLoadingMaskToDisappear stepKey="waitForCountryLoadingMaskDisappear"/>
  22. <selectOption selector="{{CheckoutCartSummarySection.stateProvince}}" userInput="{{estimateAddress.state}}" stepKey="selectStateProvince"/>
  23. <waitForLoadingMaskToDisappear stepKey="waitForStateLoadingMaskDisappear"/>
  24. <fillField selector="{{CheckoutCartSummarySection.postcode}}" userInput="{{estimateAddress.zipCode}}" stepKey="fillZipPostalCodeField"/>
  25. <waitForLoadingMaskToDisappear stepKey="waitForZipLoadingMaskDisappear"/>
  26. </actionGroup>
  27. </actionGroups>