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="AdminCustomerAccountInformationSection">
- <element name="accountInformationTab" type="button" selector="#tab_customer"/>
- <element name="statusInactive" type="button" selector=".admin__actions-switch-label"/>
- <element name="accountInformationTitle" type="text" selector=".admin__page-nav-title"/>
- <element name="accountInformationButton" type="text" selector="//a/span[text()='Account Information']"/>
- <element name="addressesButton" type="select" selector="//a//span[contains(text(), 'Addresses')]"/>
- <element name="firstName" type="input" selector="input[name='customer[firstname]']"/>
- <element name="lastName" type="input" selector="input[name='customer[lastname]']"/>
- <element name="email" type="input" selector="input[name='customer[email]']"/>
- <element name="group" type="select" selector="[name='customer[group_id]']"/>
- <element name="groupValue" type="button" selector="//span[text()='{{groupValue}}']" parameterized="true"/>
- <element name="associateToWebsite" type="select" selector="//select[@name='customer[website_id]']"/>
- <element name="saveCustomer" type="button" selector="//button[@title='Save Customer']"/>
- <element name="saveCustomerAndContinueEdit" type="button" selector="//button[@title='Save and Continue Edit']"/>
- <element name="storeView" type="select" selector="//select[@name='customer[sendemail_store_id]']"/>
- </section>
- </sections>
|