KpGuestCheckoutShippingSection.xml 1.3 KB

123456789101112131415161718192021222324252627
  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. <sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13. xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
  14. <section name="KpGuestCheckoutShippingSection">
  15. <element name="email" type="input" selector="#customer-email"/>
  16. <element name="firstName" type="input" selector="input[name=firstname]"/>
  17. <element name="lastName" type="input" selector="input[name=lastname]"/>
  18. <element name="street" type="input" selector="input[name='street[0]']"/>
  19. <element name="city" type="input" selector="input[name=city]"/>
  20. <element name="region" type="select" selector="select[name=region_id]"/>
  21. <element name="postcode" type="input" selector="input[name=postcode]"/>
  22. <element name="telephone" type="input" selector="input[name=telephone]"/>
  23. <element name="next" type="button" selector="button.button.action.continue.primary"/>
  24. <element name="firstShippingMethod" type="radio" selector=".row:nth-of-type(1) .col-method .radio"/>
  25. </section>
  26. </sections>