2023-12-01 14:58:22 +01:00

16 lines
246 B
Python

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