File tree Expand file tree Collapse file tree 8 files changed +106
-3
lines changed
design/frontend/Magento/blank/web/css/source
lib/internal/Magento/Framework
setup/src/Magento/Setup/Model/ConfigOptionsList Expand file tree Collapse file tree 8 files changed +106
-3
lines changed Original file line number Diff line number Diff line change
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 =" AdminNavigateToEmailToFriendSettingsActionGroup" >
12
+ <amOnPage url =" {{AdminConfigurationEmailToFriendPage.url}}" stepKey =" navigateToPersistencePage" />
13
+ <conditionalClick selector =" {{AdminEmailToFriendSection.DefaultLayoutsTab}}" dependentSelector =" {{AdminEmailToFriendSection.CheckIfTabExpand}}" visible =" true" stepKey =" clickTab" />
14
+ </actionGroup >
15
+ </actionGroups >
Original file line number Diff line number Diff line change
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 =" AssertAdminEmailToFriendOptionsAvailableActionGroup" >
12
+ <seeElement stepKey =" seeEmailTemplateInput" selector =" {{AdminEmailToFriendSection.emailTemplate}}" />
13
+ <seeElement stepKey =" seeAllowForGuestsInput" selector =" {{AdminEmailToFriendSection.allowForGuests}}" />
14
+ <seeElement stepKey =" seeMaxRecipientsInput" selector =" {{AdminEmailToFriendSection.maxRecipients}}" />
15
+ <seeElement stepKey =" seeMaxPerHourInput" selector =" {{AdminEmailToFriendSection.maxPerHour}}" />
16
+ <seeElement stepKey =" seeLimitSendingBy" selector =" {{AdminEmailToFriendSection.limitSendingBy}}" />
17
+ </actionGroup >
18
+ </actionGroups >
Original file line number Diff line number Diff line change
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
+ <pages xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
10
+ xsi : noNamespaceSchemaLocation =" urn:magento:mftf:Page/etc/PageObject.xsd" >
11
+ <page name =" AdminConfigurationEmailToFriendPage" url =" admin/system_config/edit/section/sendfriend/" module =" Catalog" area =" admin" >
12
+ <section name =" AdminEmailToFriendSection" />
13
+ </page >
14
+ </pages >
Original file line number Diff line number Diff line change
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
+ <tests xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
10
+ xsi : noNamespaceSchemaLocation =" urn:magento:mftf:Test/etc/testSchema.xsd" >
11
+ <test name =" AdminCatalogEmailToFriendSettingsTest" >
12
+ <annotations >
13
+ <features value =" Backend" />
14
+ <stories value =" Enable Email To A Friend Functionality" />
15
+ <title value =" Admin should be able to manage settings of Email To A Friend Functionality" />
16
+ <description value =" Admin should be able to enable Email To A Friend functionality in Magento Admin backend and see additional options" />
17
+ <group value =" backend" />
18
+ <severity value =" MINOR" ></severity >
19
+ <testCaseId value =" MC-35895" />
20
+ </annotations >
21
+
22
+ <before >
23
+ <actionGroup ref =" AdminLoginActionGroup" stepKey =" loginAsAdmin" />
24
+ <magentoCLI stepKey =" enableSendFriend" command =" config:set sendfriend/email/enabled 1" />
25
+ <magentoCLI stepKey =" cacheClean" command =" cache:clean config" />
26
+ </before >
27
+ <after >
28
+ <magentoCLI stepKey =" disableSendFriend" command =" config:set sendfriend/email/enabled 0" />
29
+ <magentoCLI stepKey =" cacheClean" command =" cache:clean config" />
30
+ <actionGroup ref =" AdminLogoutActionGroup" stepKey =" logout" />
31
+ </after >
32
+
33
+ <actionGroup ref =" AdminNavigateToEmailToFriendSettingsActionGroup" stepKey =" navigateToSendFriendSettings" />
34
+ <actionGroup ref =" AssertAdminEmailToFriendOptionsAvailableActionGroup" stepKey =" assertOptions" />
35
+ </test >
36
+ </tests >
Original file line number Diff line number Diff line change
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 =" AdminEmailToFriendSection" >
12
+ <element name =" DefaultLayoutsTab" type =" button" selector =" .entry-edit-head-link" />
13
+ <element name =" CheckIfTabExpand" type =" button" selector =" .entry-edit-head-link:not(.open)" />
14
+ <element name =" emailTemplate" type =" input" selector =" #sendfriend_email_template" />
15
+ <element name =" allowForGuests" type =" input" selector =" #sendfriend_email_allow_guest" />
16
+ <element name =" maxRecipients" type =" input" selector =" #sendfriend_email_max_recipients" />
17
+ <element name =" maxPerHour" type =" input" selector =" #sendfriend_email_max_per_hour" />
18
+ <element name =" limitSendingBy" type =" input" selector =" #sendfriend_email_check_by" />
19
+ </section >
20
+ </sections >
Original file line number Diff line number Diff line change 1110
1110
.abs-shopping-cart-items {
1111
1111
.action {
1112
1112
& .continue {
1113
- border-radius : 3 px ;
1113
+ border-radius : @button__border-radius ;
1114
1114
font-weight : @font-weight__bold ;
1115
1115
.lib-link-as-button ();
1116
1116
.lib-button (
Original file line number Diff line number Diff line change 9
9
* Registry model. Used to manage values in registry
10
10
*
11
11
* Registry usage as a shared service introduces temporal, hard to detect coupling into system.
12
- * It's usage should be avoid . Use service classes or data providers instead.
12
+ * Its usage should be avoided . Use service classes or data providers instead.
13
13
*
14
14
* @api
15
15
* @deprecated 102.0.0
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class Session implements ConfigOptionsListInterface
40
40
const INPUT_KEY_SESSION_REDIS_SENTINEL_SERVERS = 'session-save-redis-sentinel-servers ' ;
41
41
const INPUT_KEY_SESSION_REDIS_SENTINEL_MASTER = 'session-save-redis-sentinel-master ' ;
42
42
const INPUT_KEY_SESSION_REDIS_SENTINEL_VERIFY_MASTER = 'session-save-redis-sentinel-verify-master ' ;
43
- const INPUT_KEY_SESSION_REDIS_SENTINEL_CONNECT_RETRIES = 'session-save-redis-sentinel-connect-retires ' ;
43
+ const INPUT_KEY_SESSION_REDIS_SENTINEL_CONNECT_RETRIES = 'session-save-redis-sentinel-connect-retries ' ;
44
44
45
45
const CONFIG_PATH_SESSION_REDIS = 'session/redis ' ;
46
46
const CONFIG_PATH_SESSION_REDIS_HOST = 'session/redis/host ' ;
You can’t perform that action at this time.
0 commit comments