-
Notifications
You must be signed in to change notification settings - Fork 3
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
[Critical] Удалить несуществующий метод data-qa #1659
Comments
закрыто, тк @mobilisf не нашёл проблем |
если у компонента 5 data-attr, то в режиме Vividus мы хотим предоставлять пользователю выбор из 6 xPath и 6 Css Selectors (5 data и 1 оригинальный сгенерированный на бэке)? текущая реализация - 1 xPath и 1 Css Selector вне зависимости от количества data-attr (берутся с бэка, не гененирируются на фронте) |
Да, нужно давать выбрать любой дата атрибут |
Environment details (please complete the following information):
JDN v 3.15.2 Back-end v 0.2.64
Describe the bug
Убрать несуществующие (тестовые qa) методы data-qa и data-qa-id.
To Reproduce
Expected result
На самом деле - для вивидуса такие дата атрибуты нужно давать пользователю выбор из двух вариатов
variables.DamenmodeOnlineKaufenFashionShopFuerDamenOttoPage.TextArea.textarea=By.cssSelector(*[data-qa-id='search-field'])
variables.DamenmodeOnlineKaufenFashionShopFuerDamenOttoPage.TextArea.textarea=By.xPath(//*[@data-qa-id='search-field'])
Это должно отображаться в выпадушке выбора типа локатора.
Сейчас там -
А должно быть две опции
CSS Selector for data-qa-id
"search-field"
и
xPath for data-qa-id
"search-field"
Выбор одного из вариантов соответственно превращается в
variables.DamenmodeOnlineKaufenFashionShopFuerDamenOttoPage.TextArea.textarea=By.cssSelector(*[data-qa-id='search-field'])
variables.DamenmodeOnlineKaufenFashionShopFuerDamenOttoPage.TextArea.textarea=By.xPath(//*[@data-qa-id='search-field'])
соответственно
The text was updated successfully, but these errors were encountered: