From 7d27a1c1edda1b9ec8251ead04fd351498a39874 Mon Sep 17 00:00:00 2001 From: AlexeyZh Date: Sat, 9 Nov 2024 19:22:48 +0300 Subject: [PATCH] feat: added allure --- tests/test_open_new_account.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/test_open_new_account.py b/tests/test_open_new_account.py index 4c9d3f2..70f6543 100644 --- a/tests/test_open_new_account.py +++ b/tests/test_open_new_account.py @@ -1,3 +1,4 @@ +import allure import pytest from config.config import BASE_URL, OPEN_NEW_ACCOUNT_URL @@ -7,6 +8,29 @@ from tests.base.base_test import BaseTest +@allure.epic("Banking Application") +@allure.feature("Account Management") +@allure.description_html(""" +

Testing New Account Creation Functionality

+

Test verifies the process of opening new accounts with different types:

+ +

The test performs the following operations:

+ +

Expected Results:

+ +""") class TestOpenNewAccount(BaseTest): """The test class for the open new account page."""