28 lines
980 B
Python
28 lines
980 B
Python
import allure
|
|
|
|
import configs
|
|
from gui.components.base_popup import BasePopup
|
|
from gui.elements.button import Button
|
|
from gui.elements.object import QObject
|
|
from gui.elements.text_edit import TextEdit
|
|
|
|
|
|
class AuthenticatePopup(BasePopup):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self._content = QObject('keycardSharedPopupContent_KeycardPopupContent')
|
|
self._passwort_text_edit = TextEdit('password_PlaceholderText')
|
|
self._authenticate_button = Button('authenticate_StatusButton')
|
|
|
|
@allure.step('Wait until appears {0}')
|
|
def wait_until_appears(self, timeout_msec: int = configs.timeouts.UI_LOAD_TIMEOUT_MSEC):
|
|
self._content.wait_until_appears(timeout_msec)
|
|
return self
|
|
|
|
@allure.step('Authenticate actions with password {0}')
|
|
def authenticate(self, password: str):
|
|
self._passwort_text_edit.type_text(password)
|
|
self._authenticate_button.click()
|
|
self._authenticate_button.wait_until_hidden()
|