From 521fc9fb742a3151e44a292c0ed0173d5672b580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Wed, 10 May 2023 10:45:12 +0200 Subject: [PATCH] IBX-4566: Increased timeout for menu navigation (#2101) --- src/lib/Behat/Component/UpperMenu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Behat/Component/UpperMenu.php b/src/lib/Behat/Component/UpperMenu.php index 6a84ac4fe0..4e8e54196a 100644 --- a/src/lib/Behat/Component/UpperMenu.php +++ b/src/lib/Behat/Component/UpperMenu.php @@ -28,7 +28,7 @@ public function goToDashboard(): void public function goToSubTab(string $tabName): void { - $this->getHTMLPage()->setTimeout(3)->findAll($this->getLocator('submenuButton'))->getByCriterion(new ElementTextCriterion($tabName))->click(); + $this->getHTMLPage()->setTimeout(7)->findAll($this->getLocator('submenuButton'))->getByCriterion(new ElementTextCriterion($tabName))->click(); } public function getNotificationsCount(): int