123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
- <section name="StorefrontCustomerDashboardAccountInformationSection">
- <element name="ContactInformation" type="textarea" selector=".box.box-information .box-content"/>
- </section>
- <section name="StorefrontCustomerAddressSection">
- <element name="firstName" type="input" selector="#firstname"/>
- <element name="lastName" type="input" selector="#lastname"/>
- <element name="company" type="input" selector="#company"/>
- <element name="phoneNumber" type="input" selector="#telephone"/>
- <element name="streetAddress1" type="input" selector="#street_1"/>
- <element name="streetAddress2" type="input" selector="#street_2"/>
- <element name="city" type="input" selector="#city"/>
- <element name="stateProvince" type="select" selector="#region_id"/>
- <element name="zip" type="input" selector="#zip"/>
- <element name="country" type="select" selector="#country"/>
- <element name="saveAddress" type="button" selector="[data-action='save-address']" timeout="30"/>
- </section>
- </sections>
|