25 lines
754 B
Python
25 lines
754 B
Python
import typing
|
|
|
|
import allure
|
|
|
|
from driver.objects_access import walk_children
|
|
from gui.elements.object import QObject
|
|
from gui.objects_map import names
|
|
|
|
|
|
class ToastMessage(QObject):
|
|
|
|
def __init__(self):
|
|
super(ToastMessage, self).__init__(names.ephemeral_Notification_List)
|
|
self._toast_message = QObject(names.ephemeralNotificationList_StatusToastMessage)
|
|
|
|
@allure.step('Get toast messages')
|
|
def get_toast_messages(self) -> typing.List[str]:
|
|
messages = []
|
|
for child in walk_children(self.object):
|
|
if getattr(child, 'id', '') == 'title':
|
|
messages.append(str(child.text))
|
|
if len(messages) == 0:
|
|
raise LookupError('Toast message not found')
|
|
return messages
|