Skip to content

Commit 40dd3eb

Browse files
authored
Merge pull request #143 from magento-commerce/develop
MQE-3155: Prepare MFTF 3.7.3 release
2 parents 4488b62 + da431d6 commit 40dd3eb

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
3.7.3
4+
---------
5+
6+
### Updates:
7+
* Fix encoding issue when secret key contains plus sign
8+
* Adding pagebuilder file upload spinner to loadingMaskLocators
9+
10+
311
3.7.2
412
---------
513

Diff for: 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.7.2",
5+
"version": "3.7.3",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

Diff for: composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ class MagentoWebDriver extends WebDriver
7272
'//div[contains(@class, "admin__data-grid-loading-mask")]',
7373
'//div[contains(@class, "admin__form-loading-mask")]',
7474
'//div[@data-role="spinner"]',
75+
'//div[contains(@class,"file-uploader-spinner")]',
76+
'//div[contains(@class,"image-uploader-spinner")]',
77+
'//div[contains(@class,"uploader")]//div[@class="file-row"]',
7578
];
7679

7780
/**
@@ -571,7 +574,7 @@ public function magentoCLI($command, $timeout = null, $arguments = null)
571574
$apiURL,
572575
[
573576
'token' => WebApiAuth::getAdminToken(),
574-
getenv('MAGENTO_CLI_COMMAND_PARAMETER') => $command,
577+
getenv('MAGENTO_CLI_COMMAND_PARAMETER') => urlencode($command),
575578
'arguments' => $arguments,
576579
'timeout' => $timeout,
577580
],

0 commit comments

Comments
 (0)