test: check possible fix for getting accounts list in wallet

Revert "temp disable debug logging and api log"

This reverts commit 81ccd42e405acd4eebbb7bbc8414e00ead4c1b3e.
This commit is contained in:
Anastasiya 2025-02-19 19:12:43 +03:00
parent 2255a8a40d
commit b1052acf84
No known key found for this signature in database
GPG Key ID: 64F1975031D212A3
2 changed files with 31 additions and 16 deletions

View File

@ -1,3 +1,4 @@
import logging
import time
import typing
@ -24,6 +25,8 @@ from gui.elements.object import QObject
from gui.elements.text_label import TextLabel
from gui.objects_map import wallet_names, settings_names, names
LOG = logging.getLogger(__name__)
class WalletScreen(QObject):
@ -48,24 +51,36 @@ class LeftPanel(QObject):
@property
@allure.step('Get all accounts from list')
def accounts(self) -> typing.List[WalletAccount]:
def accounts(self, timeout_sec: int = configs.timeouts.UI_LOAD_TIMEOUT_SEC) -> typing.List[WalletAccount]:
start_time = time.monotonic()
while time.monotonic() - start_time < timeout_sec:
try:
return self.get_list_of_accounts()
except LookupError as err:
LOG.info(f'accounts are not found: {err}')
time.sleep(0.1)
raise LookupError("Notifications were not found within the timeout period.")
def get_list_of_accounts(self):
if 'title' in self._wallet_account_item.real_name.keys():
del self._wallet_account_item.real_name['title']
time.sleep(1) # to give a chance for the left panel to refresh
raw_data = driver.findAllObjects(self._wallet_account_item.real_name)
accounts = []
if raw_data:
for account_item in raw_data:
name = str(account_item.title)
color = str(account_item.asset.color.name).lower()
emoji = ''
for child in walk_children(account_item):
if hasattr(child, 'emojiId'):
emoji = str(child.emojiId)
break
accounts.append(constants.WalletAccount(name=name, color=color, emoji=emoji.split('-')[0]))
return accounts
raise LookupError('Accounts were not found')
raw_data = driver.findAllObjects(self._wallet_account_item.real_name)
for account_item in raw_data:
name = str(account_item.title)
color = str(account_item.asset.color.name).lower()
emoji = ''
for child in walk_children(account_item):
if hasattr(child, 'emojiId'):
emoji = str(child.emojiId)
break
accounts.append(constants.WalletAccount(name=name, color=color, emoji=emoji.split('-')[0]))
if not accounts:
raise LookupError('Toast message not found')
return accounts
@allure.step('Get total balance value from All accounts')
def get_total_balance_value(self):

View File

@ -12,7 +12,7 @@ from gui.main_window import MainWindow
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703033', 'Manage a generated account')
@pytest.mark.case(703033)
@pytest.mark.critical
@pytest.mark.skip(reason='temp skip, need to fix it')
# @pytest.mark.skip(reason='temp skip, need to fix it')
def test_add_edit_delete_generated_account(main_screen: MainWindow, user_account,):
with step('Create generated wallet account'):
name = random_wallet_acc_keypair_name()