Skip to content

Commit ef98b32

Browse files
Page builder test failures fix
1 parent 38cd6dc commit ef98b32

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
4+
4.9.2
5+
---------
6+
### Fixes
7+
* Allowed additional actions to read from credentials file to fix page builder failures.
8+
39
4.9.1
410
---------
511
### Fixes
@@ -54,16 +60,16 @@ Magento Functional Testing Framework Changelog
5460
4.7.2
5561
---------
5662
### Enhancements
57-
* Fail static test when introduced filename does not equal the MFTF object name
63+
* Fail static test when introduced filename does not equal the MFTF object name
5864
contained within.
5965

6066
4.7.1
6167
---------
6268
### Enhancements
6369
* Bumped all symfony dependencies to `^6.0
64-
* Removed abandoned package codacy/coverage
70+
* Removed abandoned package codacy/coverage
6571
* Removed abandoned package sebastian/phpcpd
66-
* Bumped monolog/monolog to ^3.0
72+
* Bumped monolog/monolog to ^3.0
6773
* Bumped nikic/php-parser to ^5.0
6874

6975
4.7.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "4.9.1",
5+
"version": "4.9.2",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

composer.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Magento/FunctionalTestingFramework/Test/Util/ActionMergeUtil.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ActionMergeUtil
2626
const DEFAULT_SKIP_ON_ORDER = 'before';
2727
const DEFAULT_SKIP_OFF_ORDER = 'after';
2828
const DEFAULT_WAIT_ORDER = 'after';
29-
const APPROVED_ACTIONS = ['fillField', 'magentoCLI', 'field'];
29+
const APPROVED_ACTIONS = ['fillField', 'magentoCLI', 'field', 'waitForElement', 'seeInField'];
3030
const SECRET_MAPPING = ['fillField' => 'fillSecretField', 'magentoCLI' => 'magentoCLISecret'];
3131
const CREDS_REGEX = "/{{_CREDS\.([\w|\/]+)}}/";
3232

0 commit comments

Comments
 (0)