Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

29 строки
1.3 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. <!--Assert That Shipping And Billing Address are the same-->
  11. <actionGroup name="AssertThatShippingAndBillingAddressTheSame">
  12. <annotations>
  13. <description>Validates that the Shipping and Billing Addresses are the same.</description>
  14. </annotations>
  15. <!--Get shipping and billing addresses-->
  16. <grabTextFrom selector="{{ShipmentFormSection.shippingAddress}}" stepKey="shippingAddr"/>
  17. <grabTextFrom selector="{{ShipmentFormSection.billingAddress}}" stepKey="billingAddr"/>
  18. <!--Make sure that shipping and billing addresses are different-->
  19. <see userInput="Shipping Address" stepKey="seeShippingAddress"/>
  20. <see userInput="Billing Address" stepKey="seeBillingAddress"/>
  21. <assertEquals stepKey="assert">
  22. <actualResult type="const">$billingAddr</actualResult>
  23. <expectedResult type="const">$shippingAddr</expectedResult>
  24. </assertEquals>
  25. </actionGroup>
  26. </actionGroups>