ContributionsMost RecentMost LikesSolutionsRe: Custom “On Error Actions” by having a “Raise exception” option in the on error column This might be a great addition, if this feature can be added to TestComplete. This feature can act as recovery scenarios for test complete on the test run. Looking forward to it. Re: Same object has different identities, so "the target object does not exist" error occurs. HI handanu , To over come the mentioned issue , one possible way is, change the "DesktopAlert" to wildcard value , ie, WPFObject("xxxWindowxx","*"). This might solve the issue for time being, but i dont know exactly why the values change by time. Re: Working With Excel Files via COM: set required sheet as active using javascript Try this out, filePath="C:\Users\sebastian\Desktop\Sample.xlsx"; SheetName="Sheet2"; Excelbook= Excel.Workbooks.Open(filePath); var xlsheet = Excel.ActiveWorkBook.WorkSheets.Item(SheetName); I am using the aove and its working