We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 588649e commit 5f33985Copy full SHA for 5f33985
src/Magento/FunctionalTestingFramework/Test/Config/Converter/Dom/Flat.php
@@ -84,6 +84,10 @@ public function convertXml(\DOMNode $source, $basePath = '')
84
$isNumericArrayNode = $this->arrayNodeConfig->isNumericArray($nodePath);
85
$isArrayNode = $isNumericArrayNode || $arrayKeyAttribute;
86
87
+ if(isset($value[$nodeName]) && $nodeName === 'waitForElementClickable' ) {
88
+ unset($value[$nodeName]);
89
+ }
90
+
91
if (isset($value[$nodeName]) && !$isArrayNode) {
92
throw new \UnexpectedValueException(
93
"Node path '{$nodePath}' is not unique, but it has not been marked as array."
0 commit comments