ContributionsMost RecentMost LikesSolutionsRe: How to Find the value in a specified object else if(ProjectSuite.Variables.Type == "checkpoint1") { var value1= aqObject.GetPropertyValue(Sys.Browser(ProjectSuite.Variables.browser). Page(ProjectSuite.Variables.Page).document.frames.Frame("ilboinnerframe").document.all.Item(ProjectSuite.Variables.Item),"innerText"); var value5 = aqConvert.StrToInt(value1); Log.Message(value5); } else if(ProjectSuite.Variables.Type == "checkpoint2") { var value2 = aqObject.GetPropertyValue(Sys.Browser(ProjectSuite.Variables.browser). Page(ProjectSuite.Variables.Page).document.frames.Frame("ilboinnerframe").document.all.Item(ProjectSuite.Variables.Item),"innerText"); var value6 = aqConvert.StrToInt(value2); Log.Message(value6); var vaule3 = value5 * value6; Log.Message(vaule3); } else if(ProjectSuite.Variables.Type == "checkpoint") { aqObject.CheckProperty(Sys.Browser(ProjectSuite.Variables.browser).Page(ProjectSuite.Variables.Page).document.frames.Frame("ilboinnerframe").document.all.Item(ProjectSuite.Variables.Item),"innerText", cmpEqual,vaule3); Message.Message(); // calling the message function } Hi, In the above code, The var value3 return only Nan(not a Number) value after the multiplication is done and I m unable to get the actual output value in var value3 so, I can't proceed with property checkpoint line. How to Find the value in a specified object Hi, I m unable to get the value that has been available in a specified field, it is a numerical value which is present during the run time. Is there any ways to find the return type of an object or variable. Re: Script code for Checkpoint validation Wamboo 1. Our framework script in Javascript. 2. I need to store the log (which means success or failure ) into some excel sheet using the DDT driver method or any other method. Re: How to handle dynamic object IDs using TestComplete in DOM model Mr_Bro Which is not working, I can't find that Filed using that code. Any other option is there? Script code for Checkpoint validation Hi, The output log of "aqobject.checkproperty" either success or failure log can be stored in any external excel file by using script code. If any Script is available to share it. SolvedRe: How to handle dynamic object IDs using TestComplete in DOM model (ext-gen1454) Here that bolded characters are "ext-gen" only constant value. The numeric value changes every time. How to handle dynamic object IDs using TestComplete in DOM model Hi, I have a problem with handling the dynamic IDs, which are changed for every refresh. I need clarification for identifying the fields using Dynamic IDs in the DOM model. Example of Dynamic ID: ext-gen1454 Reducing Delay js script I am using the DOM model framework for web testing but it will take too much time to complete execution. So I need an answer to how to reduce the delay happens during execution and how to improve the performance of execution. Solved