17 lines
390 B
Python
Raw Normal View History

2023-10-06 10:02:48 +07:00
import allure
from gui.components.base_popup import BasePopup
from gui.elements.button import Button
2023-10-06 10:02:48 +07:00
class LeaveGroupPopup(BasePopup):
def __init__(self):
super().__init__()
self._leave_button = Button('leave_StatusButton')
@allure.step("Confirm leaving group")
def confirm_leaving(self):
self._leave_button.click()
self.wait_until_hidden()