Skip to content

Commit 6900633

Browse files
committed
MQE-3124: fix unbalanced parallel groups
1 parent 57153d7 commit 6900633

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/Magento/FunctionalTestingFramework/Test/Objects/TestObject.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ class TestObject
2525
'waitForLoadingMaskToDisappear' => 500,
2626
'wait' => self::WAIT_TIME_ATTRIBUTE,
2727
'waitForAjaxLoad' => 500,
28+
'waitForElementNotVisible' => 500,
29+
'waitForElementVisible' => 500,
30+
'waitForText' => 500,
31+
'waitForElement' => 500,
2832
'waitForJS' => 500,
2933
'comment' => 5,
3034
'assertCount' => 5,
@@ -104,8 +108,10 @@ class TestObject
104108

105109
/**
106110
* Indicates if a test contains an action that requires Web API authentication.
111+
*
112+
* @var boolean
107113
*/
108-
private bool $hasWebApiAuthAction;
114+
private $hasWebApiAuthAction;
109115

110116
/**
111117
* TestObject constructor.

0 commit comments

Comments
 (0)