In one of my process I did web automation. But every month they are performing maintenance activity. So, for few elements selector will change. Every month i am fine tuning selector. I used object repository. I tried with fuzzy selector It is not working for my case. So, what is alternative solution for this.
Note : No changes in the front end UI design. changes only with selctors
Please show the selector and show what are changing?
Generaly rule would be not to use id …if you are using so …try to use innertext as you are saying ui design is not changing innertext would be same and also tags might be same…just check which are changing and stop using those attributes
Make the selectors dynamic by using wildcards like (*) and (?).
While indicating the element see the properties of the selectors which you think will get change when you open the website again, and make those properties element dynamic by using such wildcards.
Let me know if you get stucked again.
See the selector is getting validate or not by not selecting parent id in UI Explorer editor.
If it is not getting validate then add wildcard in it.
parentid=‘*’
Hi, @BNK
-did you check if you use the wildcard for the parentid does it highlight same component?
-check the UiExplorer for the creating a unique selector
Selectors in Studio Deep Dive course (UiPath Academy) offers great techniques on how you can fine tune. I’d recommend looking at Find Children activity with appropriate filter.
You have to figure out which properties are changing, and use properties that don’t change. If you want specific answers, you’ll have to show us the selector. Open UI Explorer and indicate the element, then post a screenshot of what it gives you, including the additional properties on the right side.