2023-07-10 15:55:10 +00:00
|
|
|
import logging
|
|
|
|
|
2023-08-04 18:27:03 +00:00
|
|
|
import allure
|
2023-09-28 12:44:13 +00:00
|
|
|
import pytest
|
|
|
|
from allure_commons._allure import step
|
2023-07-10 15:55:10 +00:00
|
|
|
|
|
|
|
_logger = logging.getLogger(__name__)
|
2023-08-04 18:27:03 +00:00
|
|
|
pytestmark = allure.suite("Self")
|
2023-07-10 15:55:10 +00:00
|
|
|
|
|
|
|
|
2023-09-28 12:44:13 +00:00
|
|
|
@pytest.mark.self
|
|
|
|
def test_start_aut(main_window):
|
|
|
|
with step("Verify: 'main_window' fixture launched test app and prepared main window"):
|
|
|
|
assert main_window.exists
|