mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-02 01:38:00 +00:00
0c63fc6f93
* OS native dialog replaced on Qt dialog * Starting fluxbox added to make File Dialog visible
17 lines
372 B
Python
17 lines
372 B
Python
import allure
|
|
|
|
from gui.components.base_popup import BasePopup
|
|
from gui.elements.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()
|