Skip to content

Commit 201f04a

Browse files
Page builder test failures fix
1 parent cbcee96 commit 201f04a

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
4+
3.13.2
5+
---------
6+
7+
### Fixes
8+
* Allowed additional actions to read from credentials file to fix page builder failures.
9+
310
3.13.1
411
---------
512

composer.json

+1-1
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": "3.13.1",
5+
"version": "3.13.2",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

composer.lock

+3-3
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

+1-1
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)