From 90a09108f164601a666d90450e83fda600df334f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Mon, 8 May 2023 09:31:12 +0200 Subject: [PATCH] IBX-4566: Increased timeout for menu navigation --- 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