File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/Magento/FunctionalTestingFramework Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -195,6 +195,9 @@ public function waitForPageLoad($timeout = 15)
195195 {
196196 $ this ->waitForJS ('return document.readyState == "complete" ' , $ timeout );
197197 $ this ->waitForAjaxLoad ($ timeout );
198+ $ this ->waitForElementNotVisible ('.loading-mask ' , 30 );
199+ $ this ->waitForElementNotVisible ('.admin_data-grid-loading-mask ' , 30 );
200+ $ this ->waitForElementNotVisible ('.admin__form-loading-mask ' , 30 );
198201 }
199202
200203 /**
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ function msq($id = null)
1414 return MagentoSequence::$ hash [$ id ];
1515 }
1616 $ prefix = MagentoSequence::$ prefix ;
17- $ sequence = $ prefix . uniqid ($ id );
17+ $ sequence = $ prefix . uniqid ();
1818 if ($ id ) {
1919 MagentoSequence::$ hash [$ id ] = $ sequence ;
2020 }
@@ -35,7 +35,7 @@ function msqs($id = null)
3535 return MagentoSequence::$ suiteHash [$ id ];
3636 }
3737 $ prefix = MagentoSequence::$ prefix ;
38- $ sequence = $ prefix . uniqid ($ id );
38+ $ sequence = $ prefix . uniqid ();
3939 if ($ id ) {
4040 MagentoSequence::$ suiteHash [$ id ] = $ sequence ;
4141 }
You can’t perform that action at this time.
0 commit comments