e-nms_qa_automation/locators/input_locators.py

16 lines
680 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.

"""Модуль input_locators содержит локаторы полей ввода на странице.
Класс InputLocators предоставляет XPath локаторы для взаимодействия
с текстовыми полями ввода в тестах.
"""
class InputLocators:
"""Локаторы для полей ввода на странице.
Содержит XPath локаторы для:
LICENSE_ID_UPDATE (str): поля ввода идентификатора лицензии в подвале
"""
LICENSE_ID_UPDATE = "//div[@class='v-input__control']//textarea[@data-testid='LICENSE__textarea__licenseKey']"