status-desktop/test/e2e/gui/components/delete_popup.py

17 lines
375 B
Python
Raw Normal View History

import allure
from gui.components.base_popup import BasePopup
from gui.elements.qt.button import Button
class DeletePopup(BasePopup):
def __init__(self):
super().__init__()
self._delete_button = Button('delete_StatusButton')
@allure.step("Delete entity")
def delete(self):
self._delete_button.click()
self.wait_until_hidden()