status-desktop/test/e2e/gui/components/onboarding/share_usage_data_popup.py

19 lines
551 B
Python

import allure
from gui.components.base_popup import BasePopup
from gui.elements.button import Button
from gui.elements.object import QObject
from gui.objects_map import names
class ShareUsageDataPopup(QObject):
def __init__(self):
super().__init__(names.share_usage_data_StatusButton)
self._not_now_button = Button(names.not_now_StatusButton )
self._share_usage_data_button = Button(names.share_usage_data_StatusButton)
@allure.step('Click not now button')
def skip(self):
self._not_now_button.click()