Skip to content

Commit 8b40fac

Browse files
committed
#26396 DeleteCustomer Action Group should wait till Loading Mask disappear
1 parent 9bad814 commit 8b40fac

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

app/code/Magento/Customer/Test/Mftf/ActionGroup/DeleteCustomerActionGroup.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<arguments>
1616
<argument name="lastName" defaultValue=""/>
1717
</arguments>
18-
18+
1919
<!--Clear filter if exist-->
2020
<amOnPage url="{{AdminCustomerPage.url}}" stepKey="navigateToCustomers"/>
2121
<conditionalClick selector="{{AdminDataGridHeaderSection.clearFilters}}" dependentSelector="{{AdminDataGridHeaderSection.clearFilters}}" visible="true" stepKey="clearExistingCustomerFilters"/>
@@ -28,16 +28,17 @@
2828
<waitForPageLoad stepKey="waitForDeleteItemPopup" time="10"/>
2929
<click stepKey="clickOnOk" selector="{{CustomersPageSection.ok}}"/>
3030
<waitForElementVisible stepKey="waitForSuccessfullyDeletedMessage" selector="{{CustomersPageSection.deletedSuccessMessage}}" time="10"/>
31+
<waitForLoadingMaskToDisappear stepKey="waitForLoadingMaskDisappear"/>
3132
</actionGroup>
32-
33+
3334
<actionGroup name="DeleteCustomerByEmailActionGroup">
3435
<annotations>
3536
<description>Goes to the Admin Customers grid page. Deletes a Customer based on the provided Email Address.</description>
3637
</annotations>
3738
<arguments>
3839
<argument name="email" type="string"/>
3940
</arguments>
40-
41+
4142
<amOnPage url="{{AdminCustomerPage.url}}" stepKey="navigateToCustomers"/>
4243
<waitForPageLoad stepKey="waitForAdminCustomerPageLoad"/>
4344
<click selector="{{AdminCustomerFiltersSection.filtersButton}}" stepKey="clickFilterButton"/>
@@ -51,6 +52,7 @@
5152
<click selector="{{CustomersPageSection.delete}}" stepKey="clickDelete"/>
5253
<waitForElementVisible selector="{{CustomersPageSection.ok}}" stepKey="waitForOkToVisible"/>
5354
<click selector="{{CustomersPageSection.ok}}" stepKey="clickOkConfirmationButton"/>
54-
<waitForElementVisible stepKey="waitForSuccessfullyDeletedMessage" selector="{{CustomersPageSection.deletedSuccessMessage}}" time="30"/>
55+
<waitForElementVisible stepKey="waitForSuccessfullyDeletedMessage" selector="{{CustomersPageSection.deletedSuccessMessage}}" time="10"/>
56+
<waitForLoadingMaskToDisappear stepKey="waitForLoadingMaskDisappear"/>
5557
</actionGroup>
5658
</actionGroups>

0 commit comments

Comments
 (0)