status-desktop/test/e2e/gui/elements/text_label.py

12 lines
206 B
Python

import allure
from gui.elements.object import QObject
class TextLabel(QObject):
@property
@allure.step('Get text {0}')
def text(self) -> str:
return str(self.object.text)