Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions locators/exercises_ru_words_family_page_locators.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Locators of web elements on the 'Exercises "Family"' page in the series "Words" on the 'ru' local"""


class ExercisesRuWordsFamilyPageLocators:
pass
7 changes: 7 additions & 0 deletions pages/exercises_ru_words_family_page.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Methods for verifying web elements on the 'Exercises "Family"' page in the series "Words" on the 'ru' local"""
from pages.base_page import BasePage
from locators.exercises_ru_words_family_page_locators import ExercisesRuWordsFamilyPageLocators


class ExercisesRuWordsFamilyPage(BasePage):
locators = ExercisesRuWordsFamilyPageLocators
7 changes: 7 additions & 0 deletions tests/exercises_ru_words_family_page_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Auto tests for verifying web elements on the 'Exercises "Family"' page in the series "Words" on the 'ru' local"""
import allure


@allure.epic("The Exercises 'Family' page in the series 'Words' on the 'ru' local")
class TestExercisesRuWordsFamilyPage:
pass