Skip to content

Commit b6186ef

Browse files
committed
Merge remote-tracking branch 'origin/MFTF-green' into MFTF-green
2 parents 3ad72c6 + d08f583 commit b6186ef

File tree

48 files changed

+710
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+710
-132
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="StorefrontAssertOnCustomerLoginPageActionGroup">
12+
<annotations>
13+
<description>Assert on the Storefront Customer Sign-In page.</description>
14+
</annotations>
15+
16+
<seeInCurrentUrl url="{{StorefrontCustomerSignInPage.url}}" stepKey="seeOnSignInPage"/>
17+
</actionGroup>
18+
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminAssertLoginAsCustomerConfigNotAvailableDirectlyActionGroup.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminAssertLoginAsCustomerConfigNotAvailableDirectlyActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer config section is not available by direct url.</description>
13+
<description>Verify Login as Customer config section is not available by direct url.</description>
1414
</annotations>
1515

1616
<amOnPage url="{{AdminLoginAsCustomerConfigPage.url}}" stepKey="navigateToLoginAsCustomerConfigSection"/>
1717
<waitForPageLoad stepKey="waitForPageLoad"/>
1818
<seeInCurrentUrl url="admin/system_config/index" stepKey="seeRedirectToConfigIndexPage"/>
19-
<dontSee userInput="Login As Customer" stepKey="dontSeeLoginAsCustomer"/>
19+
<dontSee userInput="Login as Customer" stepKey="dontSeeLoginAsCustomer"/>
2020
</actionGroup>
2121
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminAssertLoginAsCustomerConfigNotVisibleActionGroup.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminAssertLoginAsCustomerConfigNotVisibleActionGroup">
1212
<annotations>
13-
<description>Verify no Login As Customer config section available.</description>
13+
<description>Verify no Login as Customer config section available.</description>
1414
</annotations>
1515

1616
<!-- TODO: update -->
17-
<dontSee userInput="Login As Customer" stepKey="dontSeeLoginAsCustomerItem"/>
17+
<dontSee userInput="Login as Customer" stepKey="dontSeeLoginAsCustomerItem"/>
1818
</actionGroup>
1919
</actionGroups>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="AdminAssertLoginAsCustomerConfigVisibleActionGroup">
12+
<annotations>
13+
<description>Verify Login as Customer config section available.</description>
14+
</annotations>
15+
16+
<seeElement selector="{{AdminCustomerConfigSection.loginAsCustomerSettingsHead}}" stepKey="seeLoginAsCustomerSettingsHead"/>
17+
<seeElement selector="{{AdminCustomerConfigSection.enableExtensionLabel}}" stepKey="seeEnableExtensionLabel"/>
18+
<seeElement selector="{{AdminCustomerConfigSection.disablePageCacheLabel}}" stepKey="seeDisablePageCacheLabel"/>
19+
<seeElement selector="{{AdminCustomerConfigSection.storeViewToLoginToLabel}}" stepKey="seeStoreViewToLoginToLabel"/>
20+
</actionGroup>
21+
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminAssertLoginAsCustomerLogRecordActionGroup.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminAssertLoginAsCustomerLogRecordActionGroup">
1212
<annotations>
13-
<description>Assert Login As Customer Log record is correct.</description>
13+
<description>Assert Login as Customer Log record is correct.</description>
1414
</annotations>
1515
<arguments>
1616
<argument name="rowNumber" type="string"/>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="AdminAssertLoginAsCustomerSectionLinkNotAvailableActionGroup">
12+
<annotations>
13+
<description>Verify Login as Customer config section isn't available.</description>
14+
</annotations>
15+
16+
<conditionalClick selector="{{CaptchaFormsDisplayingSection.customer}}" dependentSelector="{{AdminCustomerConfigSection.loginAsCustomerSettingsSectionLink}}" visible="false" stepKey="expandCustomerGroup"/>
17+
<dontSeeElement selector="{{AdminCustomerConfigSection.loginAsCustomerSettingsSectionLink}}" stepKey="dontSeeLoginAsCustomerSettingsLink"/>
18+
</actionGroup>
19+
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminFilterLoginAsCustomerLogActionGroup.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminFilterLoginAsCustomerLogActionGroup">
1212
<annotations>
13-
<description>Filter Login As Customer Log records.</description>
13+
<description>Filter Login as Customer Log records.</description>
1414
</annotations>
1515
<arguments>
1616
<argument name="adminId" type="string"/>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerAbsentOnCustomerGirdPageActionGroup.xml

Lines changed: 0 additions & 20 deletions
This file was deleted.

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerAbsentOnCustomerPageActionGroup.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminLoginAsCustomerAbsentOnCustomerPageActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer Login action is absent on Customer page.</description>
13+
<description>Verify Login as Customer Login action is absent on Customer page.</description>
1414
</annotations>
1515
<arguments>
1616
<argument name="customerId" type="string"/>
1717
</arguments>
1818

1919
<amOnPage url="{{AdminEditCustomerPage.url(customerId)}}" stepKey="gotoCustomerPage"/>
2020
<waitForPageLoad stepKey="waitForCustomerPageLoad"/>
21-
<dontSee userInput="Login As Customer" stepKey="dontSeeLoginAsCustomer"/>
21+
<dontSee userInput="Login as Customer" stepKey="dontSeeLoginAsCustomer"/>
2222
</actionGroup>
2323
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerAbsentOnOrderGridPageActionGroup.xml

Lines changed: 0 additions & 20 deletions
This file was deleted.

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerAbsentOnOrderPageActionGroup.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminLoginAsCustomerAbsentOnOrderPageActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer Login action is absent on Order page.</description>
13+
<description>Verify Login as Customer Login action is absent on Order page.</description>
1414
</annotations>
1515
<arguments>
1616
<argument name="orderId" type="string"/>
1717
</arguments>
1818

1919
<amOnPage url="{{AdminOrderPage.url(orderId)}}" stepKey="gotoOrderPage"/>
2020
<waitForPageLoad stepKey="waitForOrderPageLoad"/>
21-
<dontSee userInput="Login As Customer" stepKey="dontSeeLoginAsCustomer"/>
21+
<dontSee userInput="Login as Customer" stepKey="dontSeeLoginAsCustomer"/>
2222
</actionGroup>
2323
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerLogAbsentInMenuActionGroup.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminLoginAsCustomerLogAbsentInMenuActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer is absent in admin menu.</description>
13+
<description>Verify Login as Customer is absent in admin menu.</description>
1414
</annotations>
1515

1616
<click selector="{{AdminMenuSection.menuItem(AdminMenuCustomers.dataUiId)}}"

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerLogPageNotAvailableActionGroup.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminLoginAsCustomerLogPageNotAvailableActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer is not available by direct url.</description>
13+
<description>Verify Login as Customer is not available by direct url.</description>
1414
</annotations>
1515

1616
<amOnPage url="{{AdminLoginAsCustomerLogPage.url}}" stepKey="openAdminLoginAsCustomerLogPage"/>
1717
<waitForPageLoad stepKey="waitForLoginAsCustomerLogPageLoad"/>
18-
<see userInput="Sorry, you need permissions to view this content."
19-
selector="{{AdminMessagesSection.accessDenied}}" stepKey="seeAccessDenied"/>
18+
<see userInput="404 Error" selector="{{AdminHeaderSection.pageHeading}}" stepKey="see404PageHeading"/>
2019
</actionGroup>
2120
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerLoginFromCustomerPageActionGroup.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminLoginAsCustomerLoginFromCustomerPageActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer Login action is works properly from Customer page.</description>
13+
<description>Verify Login as Customer Login action is works properly from Customer page.</description>
1414
</annotations>
1515
<arguments>
1616
<argument name="customerId" type="string"/>
@@ -21,8 +21,7 @@
2121
<click selector="{{AdminCustomerMainActionsSection.loginAsCustomer}}" stepKey="clickLoginAsCustomerLink"/>
2222
<see selector="{{AdminConfirmationModalSection.title}}" userInput="You are about to Login as Customer"
2323
stepKey="seeModal"/>
24-
<!-- TODO: Unskip after https://github.com/magento/magento2-login-as-customer/issues/137 is fixed-->
25-
<!-- <see selector="{{AdminConfirmationModalSection.message}}" userInput="Actions taken while in "Login as Customer" will affect actual customer data." stepKey="seeModalMessage"/>-->
24+
<see selector="{{AdminConfirmationModalSection.message}}" userInput="Actions taken while in &quot;Login as Customer&quot; will affect actual customer data." stepKey="seeModalMessage"/>
2625
<click selector="{{AdminConfirmationModalSection.ok}}" stepKey="clickLogin"/>
2726
<switchToNextTab stepKey="switchToNewTab"/>
2827
<waitForPageLoad stepKey="waitForPageLoad"/>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerLoginFromCustomerPageManualChooseActionGroup.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminLoginAsCustomerLoginFromCustomerPageManualChooseActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer Login action is works properly from Customer page with manual Store View choose.</description>
13+
<description>Verify Login as Customer Login action is works properly from Customer page with manual Store View choose.</description>
1414
</annotations>
1515
<arguments>
1616
<argument name="customerId" type="string"/>
@@ -21,8 +21,7 @@
2121
<waitForPageLoad stepKey="waitForCustomerPageLoad"/>
2222
<click selector="{{AdminCustomerMainActionsSection.loginAsCustomer}}" stepKey="clickLoginAsCustomerLink"/>
2323
<see selector="{{AdminConfirmationModalSection.title}}" userInput="Login as Customer: Select Store View" stepKey="seeModal"/>
24-
<!-- TODO: Unskip after https://github.com/magento/magento2-login-as-customer/issues/137 is fixed-->
25-
<!-- <see selector="{{AdminConfirmationModalSection.message}}" userInput="Actions taken while in "Login as Customer" will affect actual customer data." stepKey="seeModalMessage"/>-->
24+
<see selector="{{AdminConfirmationModalSection.message}}" userInput="Actions taken while in &quot;Login as Customer&quot; will affect actual customer data." stepKey="seeModalMessage"/>
2625
<selectOption selector="{{AdminLoginAsCustomerConfirmationModalSection.storeView}}" userInput="{{storeViewName}}" stepKey="selectStoreView"/>
2726
<click selector="{{AdminConfirmationModalSection.ok}}" stepKey="clickLogin"/>
2827
<switchToNextTab stepKey="switchToNewTab"/>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminLoginAsCustomerLoginFromOrderPageActionGroup.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminLoginAsCustomerLoginFromOrderPageActionGroup">
1212
<annotations>
13-
<description>Verify Login As Customer Login action is works properly from Order grid page.</description>
13+
<description>Verify Login as Customer Login action is works properly from Order grid page.</description>
1414
</annotations>
1515
<arguments>
1616
<argument name="orderId" type="string"/>
@@ -21,8 +21,7 @@
2121
<click selector="{{AdminOrderDetailsMainActionsSection.loginAsCustomer}}" stepKey="clickLoginAsCustomerLink"/>
2222
<see selector="{{AdminConfirmationModalSection.title}}" userInput="You are about to Login as Customer"
2323
stepKey="seeModal"/>
24-
<!-- TODO: Unskip after https://github.com/magento/magento2-login-as-customer/issues/137 is fixed-->
25-
<!-- <see selector="{{AdminConfirmationModalSection.message}}" userInput="Actions taken while in "Login as Customer" will affect actual customer data." stepKey="seeModalMessage"/>-->
24+
<see selector="{{AdminConfirmationModalSection.message}}" userInput="Actions taken while in &quot;Login as Customer&quot; will affect actual customer data." stepKey="seeModalMessage"/>
2625
<click selector="{{AdminConfirmationModalSection.ok}}" stepKey="clickLogin"/>
2726
<switchToNextTab stepKey="switchToNewTab"/>
2827
<waitForPageLoad stepKey="waitForPageLoad"/>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminOpenLoginAsCustomerLogActionGroup.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminOpenLoginAsCustomerLogActionGroup">
1212
<annotations>
13-
<description>Navigate to Login As Customer Log page.</description>
13+
<description>Navigate to Login as Customer Log page.</description>
1414
</annotations>
1515

1616
<amOnPage url="{{AdminLoginAsCustomerLogPage.url}}" stepKey="gotoLoginAsCustomerLogPage"/>
1717
<waitForPageLoad stepKey="waitForPageLoad"/>
18-
<see userInput="Login As Customer Log" stepKey="titleIsVisible"/>
18+
<see userInput="Login as Customer Log" stepKey="titleIsVisible"/>
1919
</actionGroup>
2020
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/ActionGroup/AdminOpenLoginAsCustomerLogFromMenuActionGroup.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="AdminOpenLoginAsCustomerLogFromMenuActionGroup">
1212
<annotations>
13-
<description>Navigate to Login As Customer Log from Menu.</description>
13+
<description>Navigate to Login as Customer Log from Menu.</description>
1414
</annotations>
1515

1616
<click selector="{{AdminMenuSection.menuItem(AdminMenuCustomers.dataUiId)}}"
1717
stepKey="clickOnCustomersMenuItem"/>
1818
<click selector="{{AdminMenuSection.menuItem(AdminMenuLoginAsCustomer.dataUiId)}}"
1919
stepKey="openLoginAsCustomerLog"/>
2020
<waitForPageLoad stepKey="waitForLoginAsCustomerLog"/>
21-
<see selector="{{AdminHeaderSection.pageTitle}}" userInput="Login As Customer Log"
21+
<see selector="{{AdminHeaderSection.pageTitle}}" userInput="Login as Customer Log"
2222
stepKey="seeForLoginAsCustomerLog"/>
2323
</actionGroup>
2424
</actionGroups>

app/code/Magento/LoginAsCustomer/Test/Mftf/Data/AdminMenuData.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd">
1111
<entity name="AdminMenuLoginAsCustomer">
12-
<data key="pageTitle">Login As Customer Log</data>
13-
<data key="title">Login As Customer Log</data>
12+
<data key="pageTitle">Login as Customer Log</data>
13+
<data key="title">Login as Customer Log</data>
1414
<data key="dataUiId">magento-loginascustomer-login-log</data>
1515
</entity>
1616
</entities>

app/code/Magento/LoginAsCustomer/Test/Mftf/Page/AdminCustomerConfigPage.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*/
77
-->
88
<pages xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/PageObject.xsd">
9-
<page name="AdminLoginAsCustomerConfigPage" url="admin/system_config/edit/section/mfloginascustomer" area="admin" module="Magento_LoginAsCustomer">
9+
<page name="AdminLoginAsCustomerConfigPage" url="admin/system_config/edit/section/login_as_customer" area="admin" module="Magento_LoginAsCustomer">
10+
<section name="AdminCustomerConfigSection"/>
1011
</page>
1112
</pages>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Integration Functional Tests
1+
# Functional Tests
22

3-
The Functional Test Module for **Magento Login As Customer** module.
3+
The Functional Tests for **Magento Login as Customer** module.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
9+
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11+
<section name="AdminCustomerConfigSection">
12+
<element name="loginAsCustomerSettingsSectionLink" type="text" selector="//a/span[contains(text(),'Login as Customer')]" timeout="30"/>
13+
<element name="loginAsCustomerSettingsHead" type="text" selector="#login_as_customer_general-head" timeout="30"/>
14+
<element name="enableExtensionLabel" type="text" selector="//span[contains(text(),'Enable Extension') and contains(@data-config-scope,'[GLOBAL]')]" timeout="30"/>
15+
<element name="disablePageCacheLabel" type="text" selector="//span[contains(text(),'Disable Page Cache For Admin User') and contains(@data-config-scope,'[GLOBAL]')]" timeout="30"/>
16+
<element name="storeViewToLoginToLabel" type="text" selector="//span[contains(text(),'Store View To Login To') and contains(@data-config-scope,'[GLOBAL]')]" timeout="30"/>
17+
</section>
18+
</sections>

app/code/Magento/LoginAsCustomer/Test/Mftf/Section/AdminCustomerGridSection.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
1111
<section name="AdminCustomerGridSection">
12-
<element name="customerLoginAsCustomerLinkByEmail" type="text" selector="//tr[contains(@class, 'data-row') and td/div[text()='{{customerEmail}}']]//a[@class='action-menu-item'][text() = 'Login As Customer']" parameterized="true" timeout="30"/>
12+
<element name="customerLoginAsCustomerLinkByEmail" type="text" selector="//tr[contains(@class, 'data-row') and td/div[text()='{{customerEmail}}']]//a[@class='action-menu-item'][text() = 'Login as Customer']" parameterized="true" timeout="30"/>
1313
</section>
1414
</sections>
1515

0 commit comments

Comments
 (0)