chore: custom timeout where app freezes with ticket reference

This commit is contained in:
Anastasiya Semiankevich 2024-06-26 12:53:52 +03:00 committed by Anastasiya
parent 289d3561bd
commit e2d7265d5b
3 changed files with 8 additions and 4 deletions

View File

@ -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')

View File

@ -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')

View File

@ -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()