ContributionsMost RecentMost LikesSolutionsObject does not exist error (Every Release) Hi All, I was working Web application with Test complete 10, we are executed script "Run Suite" few months working fine(I mean one Release working fine "Run Site", coming to next Release some objects not identify ), After that we will executed script at that time "object not found error" occur. *that particuler object there in Name mapping but script doe's not identify some objects, I am executed "Run Suite" in UAT Env. why it is coming that error every Release :smileyhappy: Thanks, Gan Re: Click an object using FullName property Hi, you can use X=GetPropertyvalue(objectName,"Text") take object property value then you can perform an action on Particuler object. Thanks, Gan Re: Newbie - 1st script - unable to navigate to the about:blank page - why? Hi, when you open that browser sucessfully after that you can specify "Wait" condition in your script like delay 4000 and Refresh the Name Mapping. Thanks, Gan Re: TC not identifying object which is outside the active monitor Hi , you can try with Keyboard operations and Set Focus method, First you can use SetFocus method for Particuler window then obj.Keys("Enter") method.otherwise you can do Record mode like Keyword script and identify the flow of execution , based on you can modify Script. I think it is useful for you. Thanks, Gan Re: Not able to use Find methods on HTML property whose value is “NaN” (not a number) you can use this "propertyvalue=GetPropertyValue(objectname,"PropertyName")", then you can perform any action that particuler object. like propertyvalue=GetPropertyValue(objectname,"HTML property"). i.e propertyvalue="NaN". I think it is useful for that issue. Re: How to handle telerik control objects (Combo Box) in Test complete We are found solution for this issue, we are using descriptive program then identify particuler object property values. step1.first identify parent object step2: then find child objects in a page like Set obj=namemapping.sys.process.panel.........(link object) varA=(propertyname1, name2,name3) varB=(propertyva1, val2,val3) procild=obj.FindAllChildern(varA,varB) procild(0).click The object property are changed during Run-time in TestComplete, How to Handle this Objects Hi, When I was executing the Script during Run time automatically change the object Property Values that's why script doesn't recognize that objects(the object doesn't Error occuer ), How to handle this kind objects in Test Complete. Cold you please tell me. Thanks and Regards GA naidu How to handle descriptive programming in Test complete compare to QTP Hi , How to handle descriptive programming in test complete, In Qtp without objects are stored in the repository, we developing the script where as Test complete reqired objects. below I added Example if any other alternative solution could you please tell me. Example: Set testObj=sys.process.webbutton(example here i specifyed button object from Name mapping) /* this statement not required in QTP when write descriptive program drictlly specify the object property value in script*/ VarA=array("Class","Text")...chooses the class and text property of the button. Varb=array("WebButton","Click Here") we need to find the object for which we are searching Set obj=testObj.Find(VarA,VarB,10) If obj.Exists then obj.click End if Thanks and Regards GA naidu SolvedHow to handle telerik control objects (Combo Box) in Test complete Hi, We have faced some issue in telerik control objects. In Web page Single combo box object as Showing two different objects like: 1.Text box (read only) 2.Link. here I addeed Screen shot and Obect does not exsit error .That's why we cannot pick the item from Combo Box. We have tried with as mentioned below: 1.First we are identifying Link object then we did Perform Mouse operation on Link Object, After that we have selected One Item Id object and Perform Mouse operation. But it is not working. If any one knows the Solution for this issue, Could you please let me know. Thanks and Regards GA naidu Solved