How to uniquely identify button object as my button object its hierarchy is changing every time
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to uniquely identify button object as my button object its hierarchy is changing every time
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If the hierarchy is changing in some pattern, like a page name being page1000 then page1000a
you can use wildcards to match the pattern instead of the exact page name and then look for your object with FindChild or something similar
here's information about wildcards
https://support.smartbear.com/testcomplete/docs/reference/misc/using-wildcards.html
here's information about FindChild
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
My case is desktop app
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Wildcards will still work. Can you show us examples of how the hierarchy is changing?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ahh!
Actually I have some window objects under which few buttons are there and i need to click on one of the child buttons of that window. and the problem is suppose when i record obj1 points to combo button but after one day that hierarchy changes its position and next day obj1 is pointing to meals & deals.
This is the problem that index changes in hierarchy even though WndCaption and Other properties stay intact.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try searching by WndCaption to find the object and then get the current index to use in further actions.
