diff --git a/test/e2e/gui/components/authenticate_popup.py b/test/e2e/gui/components/authenticate_popup.py index 6816bd70c2..da22f9a9b3 100644 --- a/test/e2e/gui/components/authenticate_popup.py +++ b/test/e2e/gui/components/authenticate_popup.py @@ -26,7 +26,8 @@ class AuthenticatePopup(BasePopup): @allure.step('Authenticate actions with password {0}') def authenticate(self, password: str): self._password_text_edit.type_text(password) - self._authenticate_button.click() + # TODO https://github.com/status-im/status-desktop/issues/15345 + self._authenticate_button.click(timeout=10) self._authenticate_button.wait_until_hidden(10000) @allure.step('Check if authenticate button is present') diff --git a/test/e2e/gui/components/wallet/wallet_account_popups.py b/test/e2e/gui/components/wallet/wallet_account_popups.py index af148ec342..7eed909247 100644 --- a/test/e2e/gui/components/wallet/wallet_account_popups.py +++ b/test/e2e/gui/components/wallet/wallet_account_popups.py @@ -161,7 +161,8 @@ class AccountPopup(BasePopup): def save_changes(self): assert driver.waitFor(lambda: self.is_save_changes_button_enabled(), configs.timeouts.UI_LOAD_TIMEOUT_MSEC) - self._add_save_account_confirmation_button.click() + # TODO https://github.com/status-im/status-desktop/issues/15345 + self._add_save_account_confirmation_button.click(timeout=10) return self @allure.step('Get enabled state of (add account / save changes) button') diff --git a/test/e2e/gui/screens/onboarding.py b/test/e2e/gui/screens/onboarding.py index 53576eafff..851780354b 100755 --- a/test/e2e/gui/screens/onboarding.py +++ b/test/e2e/gui/screens/onboarding.py @@ -36,7 +36,8 @@ class AllowNotificationsView(QObject): @allure.step("Start using Status") def start_using_status(self): - self._start_using_status_button.click() + # TODO https://github.com/status-im/status-desktop/issues/15345 + self._start_using_status_button.click(timeout=10) self.wait_until_hidden() @@ -417,7 +418,8 @@ class YourEmojihashAndIdenticonRingView(OnboardingView): @allure.step('Click next in your emojihash and identicon ring view') def next(self): - self._next_button.click() + # TODO https://github.com/status-im/status-desktop/issues/15345 + self._next_button.click(timeout=10) time.sleep(1) if configs.system.get_platform() == "Darwin": return AllowNotificationsView().wait_until_appears()