-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_FAQ.py
37 lines (34 loc) · 2.07 KB
/
test_FAQ.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import pytest
import allure
from pages.home_page import YaScooterHomePage
from utils.test_data import YaScooterHomePageFAQ
from utils.locators import YaScooterHomePageLocator
@allure.epic('Эпик_Upgrade Main page / ui usability')
@allure.parent_suite('Parent_suite_Домашняя страница')
@allure.suite('Suite_FAQ')
class TestYaScooterFAQPage:
@allure.feature('Фича_Аккордион с вопрос/ответ на Домашней страницы')
@allure.story('Стори_При нажатии на вопрос в разделе "Вопросы о важном" раскрывается ответ.')
@allure.title('При нажатии на вопрос раскрывается ответ ')
@allure.description('Проверка что при нажатии на поле вопроса в блоке "Вопросы о важном", '
'данный вопрос раскрывается и текст в нем соответствует ТЗ')
@pytest.mark.parametrize(
"question,answer,expected_answer",
[
(0, 0, YaScooterHomePageFAQ.answer1),
(1, 1, YaScooterHomePageFAQ.answer2),
(2, 2, YaScooterHomePageFAQ.answer3),
(3, 3, YaScooterHomePageFAQ.answer4),
(4, 4, YaScooterHomePageFAQ.answer5),
(5, 5, YaScooterHomePageFAQ.answer6),
(6, 6, YaScooterHomePageFAQ.answer7),
(7, 7, YaScooterHomePageFAQ.answer8),
]
)
def test_faq_click_first_question_show_answer(self, driver, question, answer, expected_answer):
ya_scooter_home_page = YaScooterHomePage(driver)
ya_scooter_home_page.go_to_site()
ya_scooter_home_page.click_cookie_accept()
ya_scooter_home_page.click_faq_question(question_number=question)
answer = ya_scooter_home_page.find_element(YaScooterHomePageLocator.FAQ_ANSWER(answer_number=answer))
assert answer.is_displayed() and answer.text == expected_answer, 'Ответ на вопрос не совпадает с ожидаемым значением '