e-nms_qa_automation/locators/text_input_locators.py

16 lines
717 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

"""Модуль text_input_locators содержит локаторы элементов ввода текста.
Класс TextInputLocators предоставляет XPath локаторы для работы
с элементами ввода текста на страницах приложения.
"""
class TextInputLocators:
"""Локаторы для элементов ввода текста.
Содержит XPath локаторы для:
INPUT_FORM_MESSAGE (str): сообщения-предупреждения поля формы ввода
"""
INPUT_FORM_MESSAGE = "//div[contains(@class,'v-messages__message')]"
ICON_PASSWORD_HIDING = "//i[contains(@class,'v-icon')]"