| 123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * This file is part of the Klarna KP module
- *
- * (c) Klarna Bank AB (publ)
- *
- * For the full copyright and license information, please view the NOTICE
- * and LICENSE files that were distributed with this source code.
- */
- -->
- <sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
- <section name="KpGuestCheckoutShippingSection">
- <element name="email" type="input" selector="#customer-email"/>
- <element name="firstName" type="input" selector="input[name=firstname]"/>
- <element name="lastName" type="input" selector="input[name=lastname]"/>
- <element name="street" type="input" selector="input[name='street[0]']"/>
- <element name="city" type="input" selector="input[name=city]"/>
- <element name="region" type="select" selector="select[name=region_id]"/>
- <element name="postcode" type="input" selector="input[name=postcode]"/>
- <element name="telephone" type="input" selector="input[name=telephone]"/>
- <element name="next" type="button" selector="button.button.action.continue.primary"/>
- <element name="firstShippingMethod" type="radio" selector=".row:nth-of-type(1) .col-method .radio"/>
- </section>
- </sections>
|