CheckoutCartSummarySection.xml 2.1 KB

12345678910111213141516171819202122232425262728
  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. <sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
  10. <section name="CheckoutCartSummarySection">
  11. <element name="elementPosition" type="text" selector=".data.table.totals > tbody tr:nth-of-type({{value}}) > th" parameterized="true"/>
  12. <element name="subtotal" type="text" selector="//*[@id='cart-totals']//tr[@class='totals sub']//td//span[@class='price']"/>
  13. <element name="shippingMethodForm" type="text" selector="#co-shipping-method-form"/>
  14. <element name="shippingMethod" type="text" selector="//*[@id='cart-totals']//tr[@class='totals shipping excl']//th//span[@class='value']"/>
  15. <element name="shipping" type="text" selector="//*[@id='cart-totals']//tr[@class='totals shipping excl']//td//span[@class='price']"/>
  16. <element name="total" type="text" selector="//*[@id='cart-totals']//tr[@class='grand totals']//td//span[@class='price']"/>
  17. <element name="proceedToCheckout" type="button" selector=".action.primary.checkout span" timeout="30"/>
  18. <element name="discountAmount" type="text" selector="td[data-th='Discount']"/>
  19. <element name="shippingHeading" type="button" selector="#block-shipping-heading"/>
  20. <element name="postcode" type="input" selector="input[name='postcode']" timeout="10"/>
  21. <element name="stateProvince" type="select" selector="select[name='region_id']" timeout="10"/>
  22. <element name="country" type="select" selector="select[name='country_id']" timeout="10"/>
  23. <element name="countryParameterized" type="select" selector="select[name='country_id'] > option:nth-child({{var}})" timeout="10" parameterized="true"/>
  24. <element name="estimateShippingAndTax" type="text" selector="#block-shipping-heading" timeout="5"/>
  25. <element name="flatRateShippingMethod" type="input" selector="#s_method_flatrate_flatrate" timeout="30"/>
  26. </section>
  27. </sections>