Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue_478_EXERCISES_SIMILAR_PHRASES_RU_PAGE_structure #479

Merged
merged 1 commit into from
Feb 1, 2025
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_similar_phrases_page_locators.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Locators of web elements on the 'Exercises "Similar phrases"' page on the 'ru' local"""


class ExercisesRuSimilarPhrasesPageLocators:
pass
7 changes: 7 additions & 0 deletions pages/exercises_ru_similar_phrases_page.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Methods for verifying web elements on the 'Exercises "Similar phrases"' page on the 'ru' local"""
from pages.base_page import BasePage
from locators.exercises_ru_similar_phrases_page_locators import ExercisesRuSimilarPhrasesPageLocators


class ExercisesRuSimilarPhrasesPage(BasePage):
locators = ExercisesRuSimilarPhrasesPageLocators
5 changes: 5 additions & 0 deletions test_data/exercises_ru_similar_phrases_page_data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Data for verifying web elements on the 'Exercises "Similar phrases"' page on the 'ru' local"""


class ExercisesRuSimilarPhrasesPageData:
pass
8 changes: 8 additions & 0 deletions tests/exercises_ru_similar_phrases_page_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""Auto tests for verifying web elements on the 'Exercises "Similar phrases"' page on the 'ru' local"""
import allure


@allure.epic("The Exercises 'Similar phrases' Page on the 'ru' local")
class TestExercisesRuSimilarPhrasesPage:
class TestExercisesRuSimilarPhrasesPageStructure:
pass