Skip to content

Commit

Permalink
Merge pull request #143 from magento-commerce/develop
Browse files Browse the repository at this point in the history
MQE-3155: Prepare MFTF 3.7.3 release
  • Loading branch information
okolesnyk authored Dec 16, 2021
2 parents 4488b62 + da431d6 commit 40dd3eb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Magento Functional Testing Framework Changelog
================================================
3.7.3
---------

### Updates:
* Fix encoding issue when secret key contains plus sign
* Adding pagebuilder file upload spinner to loadingMaskLocators


3.7.2
---------

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "magento/magento2-functional-testing-framework",
"description": "Magento2 Functional Testing Framework",
"type": "library",
"version": "3.7.2",
"version": "3.7.3",
"license": "AGPL-3.0",
"keywords": ["magento", "automation", "functional", "testing"],
"config": {
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ class MagentoWebDriver extends WebDriver
'//div[contains(@class, "admin__data-grid-loading-mask")]',
'//div[contains(@class, "admin__form-loading-mask")]',
'//div[@data-role="spinner"]',
'//div[contains(@class,"file-uploader-spinner")]',
'//div[contains(@class,"image-uploader-spinner")]',
'//div[contains(@class,"uploader")]//div[@class="file-row"]',
];

/**
Expand Down Expand Up @@ -571,7 +574,7 @@ public function magentoCLI($command, $timeout = null, $arguments = null)
$apiURL,
[
'token' => WebApiAuth::getAdminToken(),
getenv('MAGENTO_CLI_COMMAND_PARAMETER') => $command,
getenv('MAGENTO_CLI_COMMAND_PARAMETER') => urlencode($command),
'arguments' => $arguments,
'timeout' => $timeout,
],
Expand Down

0 comments on commit 40dd3eb

Please sign in to comment.