Skip to content

Commit b0e717f

Browse files
create exercises_ru_words_family_page_test.py, exercises_ru_words_family_page.py, exercises_ru_words_family_page_locators.py
#623
1 parent 659ea8d commit b0e717f

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"""Locators of web elements on the 'Exercises "Family"' page in the series "Words" on the 'ru' local"""
2+
3+
4+
class ExercisesRuWordsFamilyPageLocators:
5+
pass
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"""Methods for verifying web elements on the 'Exercises "Family"' page in the series "Words" on the 'ru' local"""
2+
from pages.base_page import BasePage
3+
from locators.exercises_ru_words_family_page_locators import ExercisesRuWordsFamilyPageLocators
4+
5+
6+
class ExercisesRuWordsFamilyPage(BasePage):
7+
locators = ExercisesRuWordsFamilyPageLocators
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"""Auto tests for verifying web elements on the 'Exercises "Family"' page in the series "Words" on the 'ru' local"""
2+
import allure
3+
4+
5+
@allure.epic("The Exercises 'Family' page in the series 'Words' on the 'ru' local")
6+
class TestExercisesRuWordsFamilyPage:
7+
pass

0 commit comments

Comments
 (0)