CheckoutShippingGuestInfoSection.xml 1.4 KB

123456789101112131415161718192021222324252627
  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="CheckoutShippingGuestInfoSection">
  11. <element name="email" type="input" selector="#customer-email"/>
  12. <element name="firstName" type="input" selector="input[name=firstname]"/>
  13. <element name="lastName" type="input" selector="input[name=lastname]"/>
  14. <element name="street" type="input" selector="input[name='street[0]']"/>
  15. <element name="city" type="input" selector="input[name=city]"/>
  16. <element name="region" type="select" selector="select[name=region_id]"/>
  17. <element name="postcode" type="input" selector="input[name=postcode]"/>
  18. <element name="telephone" type="input" selector="input[name=telephone]"/>
  19. <element name="next" type="button" selector="button.button.action.continue.primary" timeout="30"/>
  20. <element name="firstShippingMethod" type="radio" selector=".row:nth-of-type(1) .col-method .radio"/>
  21. <!--Order Summary-->
  22. <element name="itemInCart" type="button" selector="//div[@class='title']"/>
  23. <element name="productName" type="text" selector="//strong[@class='product-item-name']"/>
  24. </section>
  25. </sections>