Skip to content

Commit 3eb3519

Browse files
MAGETWO-65232: Product name does not display special characters properly
- Updated automated test script.
1 parent fde1788 commit 3eb3519

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

app/code/Magento/Catalog/Test/Mftf/Test/AdminRemoveImageAffectsAllScopesTest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,8 @@
6565
</actionGroup>
6666
<deleteData createDataKey="category" stepKey="deletePreReqCategory"/>
6767
<deleteData createDataKey="product" stepKey="deleteFirstProduct"/>
68-
6968
<magentoCLI stepKey="reindex" command="indexer:reindex"/>
7069
<magentoCLI stepKey="flushCache" command="cache:flush"/>
71-
7270
<actionGroup ref="logout" stepKey="logout"/>
7371
</after>
7472

app/code/Magento/Sales/Test/Mftf/ActionGroup/AdminInvoiceActionGroup.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,22 @@
1919
<see selector="{{AdminInvoiceOrderInformationSection.customerName}}" userInput="{{customer.firstname}}" stepKey="seeCustomerName"/>
2020
<see selector="{{AdminInvoiceOrderInformationSection.customerEmail}}" userInput="{{customer.email}}" stepKey="seeCustomerEmail"/>
2121
<see selector="{{AdminInvoiceOrderInformationSection.customerGroup}}" userInput="{{customerGroup.code}}" stepKey="seeCustomerGroup"/>
22-
2322
<see selector="{{AdminInvoiceAddressInformationSection.billingAddress}}" userInput="{{billingAddress.street[0]}}" stepKey="seeBillingAddressStreet"/>
2423
<see selector="{{AdminInvoiceAddressInformationSection.billingAddress}}" userInput="{{billingAddress.city}}" stepKey="seeBillingAddressCity"/>
2524
<see selector="{{AdminInvoiceAddressInformationSection.billingAddress}}" userInput="{{billingAddress.country_id}}" stepKey="seeBillingAddressCountry"/>
2625
<see selector="{{AdminInvoiceAddressInformationSection.billingAddress}}" userInput="{{billingAddress.postcode}}" stepKey="seeBillingAddressPostcode"/>
27-
2826
<see selector="{{AdminInvoiceAddressInformationSection.shippingAddress}}" userInput="{{shippingAddress.street[0]}}" stepKey="seeShippingAddressStreet"/>
2927
<see selector="{{AdminInvoiceAddressInformationSection.shippingAddress}}" userInput="{{shippingAddress.city}}" stepKey="seeShippingAddressCity"/>
3028
<see selector="{{AdminInvoiceAddressInformationSection.shippingAddress}}" userInput="{{shippingAddress.country_id}}" stepKey="seeShippingAddressCountry"/>
3129
<see selector="{{AdminInvoiceAddressInformationSection.shippingAddress}}" userInput="{{shippingAddress.postcode}}" stepKey="seeShippingAddressPostcode"/>
3230
</actionGroup>
33-
3431
<!--Check that product is in invoice items-->
3532
<actionGroup name="seeProductInInvoiceItems">
3633
<arguments>
3734
<argument name="product"/>
3835
</arguments>
3936
<see selector="{{AdminInvoiceItemsSection.skuColumn}}" userInput="{{product.sku}}" stepKey="seeProductSkuInGrid"/>
4037
</actionGroup>
41-
4238
<!--Admin Fast Create Invoice-->
4339
<actionGroup name="adminFastCreateInvoice">
4440
<click selector="{{AdminOrderDetailsMainActionsSection.invoice}}" stepKey="clickInvoiceButton"/>
@@ -50,34 +46,29 @@
5046
<click selector="{{AdminOrderInvoicesTabSection.viewInvoice}}" stepKey="openInvoicePage"/>
5147
<waitForPageLoad stepKey="waitForInvoicePageLoad"/>
5248
</actionGroup>
53-
5449
<actionGroup name="clearInvoicesGridFilters">
5550
<amOnPage url="{{AdminInvoicesPage.url}}" stepKey="goToInvoices"/>
5651
<waitForPageLoad stepKey="waitInvoicesGridToLoad"/>
5752
<conditionalClick selector="{{AdminDataGridHeaderSection.clearFilters}}" dependentSelector="{{AdminDataGridHeaderSection.clearFilters}}" visible="true" stepKey="clearFilters" />
5853
<waitForPageLoad stepKey="waitInvoicesGrid"/>
5954
</actionGroup>
60-
6155
<actionGroup name="goToInvoiceIntoOrder">
6256
<click selector="{{AdminOrderDetailsMainActionsSection.invoice}}" stepKey="clickInvoiceAction"/>
6357
<seeInCurrentUrl url="{{AdminInvoiceNewPage.url}}" stepKey="seeOrderInvoiceUrl"/>
6458
<see selector="{{AdminHeaderSection.pageTitle}}" userInput="New Invoice" stepKey="seePageNameNewInvoicePage"/>
6559
</actionGroup>
66-
6760
<actionGroup name="StartCreateInvoiceFromOrderPage">
6861
<click selector="{{AdminOrderDetailsMainActionsSection.invoice}}" stepKey="clickInvoiceAction"/>
6962
<seeInCurrentUrl url="{{AdminInvoiceNewPage.url}}" stepKey="seeNewInvoiceUrl"/>
7063
<see selector="{{AdminHeaderSection.pageTitle}}" userInput="New Invoice" stepKey="seeNewInvoicePageTitle"/>
7164
</actionGroup>
72-
7365
<actionGroup name="SubmitInvoice">
7466
<click selector="{{AdminInvoiceMainActionsSection.submitInvoice}}" stepKey="clickSubmitInvoice"/>
7567
<waitForElementVisible selector="{{AdminMessagesSection.successMessage}}" stepKey="waitForMessageAppears"/>
7668
<see selector="{{AdminMessagesSection.successMessage}}" userInput="The invoice has been created." stepKey="seeInvoiceCreateSuccess"/>
7769
<grabFromCurrentUrl regex="~/order_id/(\d+)/~" stepKey="grabOrderId"/>
7870
<seeInCurrentUrl url="{{AdminOrderDetailsPage.url('$grabOrderId')}}" stepKey="seeViewOrderPageInvoice"/>
7971
</actionGroup>
80-
8172
<!--Filter invoices by order id -->
8273
<actionGroup name="filterInvoiceGridByOrderId">
8374
<arguments>

0 commit comments

Comments
 (0)