ContributionsMost RecentMost LikesSolutionsFind object methods for Mobile Hi, I am starting from TestComplete Mobile , I am not able to search objects with find method (Which we also use for Web) examples (c#) var process = Mobile["Device"]()["Process"]("com.xxx.flow.xxx"); var view = process["Layout"]("NO_ID")["Layout"]("action_bar_root")["Layout"]("content")["View"]("NO_ID"); var Button1 = process["Find"]("ViewID","crc64ee486da937c010f4.ButtonRenderer") var Lable1 = view["FindChildEx"]("ViewID","crc64ee486da937c010f4.LabelRenderer") is this methods not valid for Mobiles? SolvedRe: Why Web object ID are changed when upgraded to TestComplete 14.73 BenoitB Agree, TestComplete doesn't change IDs. I mean when I spy any web object with Testcomplete14.73 is shows different full path (Web Application Build and browser version is same) Object Spy with Version 14.70 Sys["Browser"]("chrome")["Page"]("https://xxxxx.com/#/RtuDashboard")["Panel"](0)["Panel"](0)["Panel"](3)["Panel"]("logical_view_wrapper")["Panel"](2)["Panel"](0)["Panel"](2)["Panel"](0) Object Spy with Version 14.73 Sys["Browser"]("chrome")["Page"]("https://xxxxx.com/#/RtuDashboard")["Panel"](0)["Panel"](Configuration)["Panel"](3)["Panel"]("logical_view_wrapper")["Panel"](2)["Panel"](DashBoard)["Panel"](2)["Panel"](0) Also unable to spy inside few windows which I was able to with 14.70 version (chrome extension is enabled) Why Web object ID are changed when upgraded to TestComplete 14.73 My Automation suite is failing as after upgrading TC to 14.73 , When I spy the objects on Web page (Angular) it shows different ids. Is there any way to restore object identification same as version 14.70 Solved