chore: improve reference for a popup in account deletion test (#237)

This commit is contained in:
Anastasiya 2023-10-31 17:59:07 +03:00 committed by GitHub
parent 1b9a246d9a
commit 0f41c2c3cf
1 changed files with 3 additions and 3 deletions

View File

@ -1,16 +1,16 @@
import allure
import configs
from gui.components.base_popup import BasePopup
from gui.elements.button import Button
from gui.elements.text_label import TextLabel
from gui.screens.settings_wallet import *
from gui.elements.object import QObject
class RemoveAccountConfirmationSettings(BasePopup):
class RemoveAccountConfirmationSettings(QObject):
def __init__(self):
super(RemoveAccountConfirmationSettings, self).__init__()
super(RemoveAccountConfirmationSettings, self).__init__('removeConfirmationTextTitle')
self._remove_confirmation_close_button = Button('removeConfirmationCrossCloseButton')
self._remove_confirmation_title_text = TextLabel('removeConfirmationTextTitle')
self._remove_confirmation_body_text = TextLabel('removeConfirmationTextBody')