24 lines
702 B
Python
24 lines
702 B
Python
import allure
|
|
|
|
import configs
|
|
from gui.components.base_popup import BasePopup
|
|
from gui.elements.button import Button
|
|
from gui.objects_map import names
|
|
|
|
|
|
class CloseChatPopup(BasePopup):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self._close_chat_button = Button(names.close_chat_StatusButton)
|
|
|
|
@allure.step('Wait until appears {0}')
|
|
def wait_until_appears(self, timeout_msec: int = configs.timeouts.UI_LOAD_TIMEOUT_MSEC):
|
|
self._close_chat_button.wait_until_appears(timeout_msec)
|
|
return self
|
|
|
|
@allure.step("Confirm closing chat")
|
|
def confirm_closing_chat(self):
|
|
self._close_chat_button.click()
|
|
self._close_chat_button.wait_until_hidden()
|