
Hi,
I am trying to fill some data in a web based ERP but in facing the selector issue.
input[Id="228:858;a"]
This is the selector in which 228 will be constant for that field 858 is a dynamic which may vary for each reload. So I tried with
input[Id^="228"] start with option
input[Id*="228"] contains with option
Both is not working even regex based is also not working.
Please do suggest with some other option that can be implemented to get the selector
Thanks and Regards
Soumiya
Hi @soumiya
Since the ID is dynamic, you could try accessing the element using different attributes of the "input" element, like the class, name, innertext, ordinal etc.
I hope that helps!