diff --git a/typo3/sysext/core/Tests/Acceptance/Application/PageTree/PageTreeFilterCest.php b/typo3/sysext/core/Tests/Acceptance/Application/PageTree/PageTreeFilterCest.php
index f43a42b8d3d091c9b5150dd49f6c915710ffefc9..07110a3fffa7aeed3c683c3d224562d79f7597e0 100644
--- a/typo3/sysext/core/Tests/Acceptance/Application/PageTree/PageTreeFilterCest.php
+++ b/typo3/sysext/core/Tests/Acceptance/Application/PageTree/PageTreeFilterCest.php
@@ -46,11 +46,9 @@ class PageTreeFilterCest
     {
         $I->fillField($this->filterInputField, 'Group');
         $this->waitForPageTreeLoad($I);
-        $I->waitForElementNotVisible('//*[text()=\'inline expandsingle\']');
-
         // [#91884] no Enter key press on purpose. The search should start by itself without additional Enter key press
         // and this assertion makes sure the filter worked
-        $I->cantSee('inline expandsingle', $this->inPageTree);
+        $I->waitForElementNotVisible('//*[text()=\'inline expandsingle\']');
 
         $I->canSee('elements group', $this->inPageTree);
         $I->canSee('inline mngroup', $this->inPageTree);
@@ -73,17 +71,17 @@ class PageTreeFilterCest
     {
         $I->fillField($this->filterInputField, 'Group');
         $this->waitForPageTreeLoad($I);
+        $I->waitForElementNotVisible('//*[text()=\'inline expandsingle\']');
 
         $I->canSee('elements group', $this->inPageTree);
         $I->canSee('inline mngroup', $this->inPageTree);
-        $I->cantSee('inline expandsingle', $this->inPageTree);
 
         $I->pressKey($this->filterInputField, WebDriverKeys::ESCAPE);
         $this->waitForPageTreeLoad($I);
 
+        $I->waitForElementVisible('//*[text()=\'inline expandsingle\']');
         $I->canSee('elements group', $this->inPageTree);
         $I->canSee('inline mngroup', $this->inPageTree);
-        $I->canSee('inline expandsingle', $this->inPageTree);
     }
 
     /**