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 57153d7 commit 6900633Copy full SHA for 6900633
src/Magento/FunctionalTestingFramework/Test/Objects/TestObject.php
@@ -25,6 +25,10 @@ class TestObject
25
'waitForLoadingMaskToDisappear' => 500,
26
'wait' => self::WAIT_TIME_ATTRIBUTE,
27
'waitForAjaxLoad' => 500,
28
+ 'waitForElementNotVisible' => 500,
29
+ 'waitForElementVisible' => 500,
30
+ 'waitForText' => 500,
31
+ 'waitForElement' => 500,
32
'waitForJS' => 500,
33
'comment' => 5,
34
'assertCount' => 5,
@@ -104,8 +108,10 @@ class TestObject
104
108
105
109
/**
106
110
* Indicates if a test contains an action that requires Web API authentication.
111
+ *
112
+ * @var boolean
107
113
*/
- private bool $hasWebApiAuthAction;
114
+ private $hasWebApiAuthAction;
115
116
117
* TestObject constructor.
0 commit comments