Files
status-app/test/e2e/gui/components/status_modals.py

20 lines
400 B
Python

import logging
from gui.elements.object import QObject
from gui.objects_map import names
LOG = logging.getLogger(__name__)
class StatusModal(QObject):
def __init__(self):
super().__init__(names.statusModal)
self.wait_until_enabled()
class StatusStackModal(QObject):
def __init__(self):
super().__init__(names.statusStackModal)
self.wait_until_enabled()