mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
Jakub Sokołowski
255f88fbb0
Some of them were renamed in: https://github.com/status-im/desktop-qa-automation/pull/352 Signed-off-by: Jakub Sokołowski <jakub@status.im>
16 lines
246 B
Python
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)
|