ContributionsMost RecentMost LikesSolutionsRe: How to Execute command line utilities from within a testcomplete scriptCan anyone please reply on this. Its an urgent requirement. ThanksHow to Execute command line utilities from within a testcomplete scriptHi.. Can anyone please let me know on how to execute the command line utilities from within a testcomplete script file and read the data from that. Immediate reply is appreciated -Thanks Sowmya BSSolvedRe: Verification if data on the bar chart using TestComplete.Please read the title as 'Verification of Data on the BarChart using TestComplete'Verification if data on the bar chart using TestComplete.Hi. I am using TestComplete 7.52 to automate our web application. In one of the page there is a bar chart display. I have attached the image file of that bar chart. The challenge now is to verify the Text dispaly on the bar chart, tool tip display on the mouserover on chart, Changes in the text on the Vertical Axis on selecting different radio buttons.. etc Please let me know how these things can be achieved. -Thanks Sowmya BSRe: TestComplete scripts execution through VSTS2010Thanks AlexisTestComplete scripts execution through VSTS2010Hi. I have VSTS 2010 installed in my system and TestComplete version 7.52 When i tried to execute the Testcomplete scripts in VSTS 2010 i could not find the TestComplete option to create a new test. How can u execute the scripts in VSTS 2010. Any informative links will be appreciated. -Thanks Sowmya BS Re: 'File' object type with Browse button - Not able to click on Browse button Hey Thanks, It worked. But i had an alternative solution with the code lines. Set BrowseBtnObject = ... Get the object.. BrowseBtnObject.Click 'This will set the cursor on the text box BrowseBtnObject.Keys("[Tab] ") 'This will press the space bar after the focus is changed to Browse button But i am curious to know why i was not able to get the browse button object uniquely!! Any answers for these would help in further scripting knowledge. -Thanks Sowmya BS 'File' object type with Browse button - Not able to click on Browse buttonHi. i am creating a automation script with testcomplete to automate the file upload functionality in our application. But i could find a text box with a Browse button next to it. When i tried to fetch the Browse button object i could notice it gets identified as a 'File' object which includes the text box. it does not show up any child objects. But i have to click on the Browse button, which i am not able to find it. Can anyone please help on this. Solutions on this as soon as possible will be appriciated. -Thanks Sowmya BSRe: How to avoid the log message "Unable to find the object 'xxx' "This code worked fine when the 'btnOK' was found on the page. It did not log any error message in the log file. But when the 'btnOK' is existing it fails to identify it and the script fails there. I have the 'btnOK' in the namemapping. Here is the below code If (DialogBoxObject.btnOK.Exists) Then (this above line is replaced with - If (DialogBoxObject.WaitNamedChild("btnOK", 10000).Exists) Then DialogBoxObject.btnOK.Click() Else DialogBoxObject.btnYes.Click() End If but this new line makes the script wait for btnOK, it does not find it even the object exists. Where am i going wrong?How to avoid the log message "Unable to find the object 'xxx' "Hi I am trying to find an object existance on the page using this below code. If DialogBoxObject.btnOK.Exists = True Then .... .. End If But Testcomplete logs an error message "Unable to Find the object btnOK" This is a log message logged by TestComplete and it points to the statement -DialogBoxObject.btnOK.Exists I am not sure if it is related to TestComplete settings as i have noticed the same piece of code being used in other script does not log this message as error. Anyone let me know how to avoid this to be logged as an error message.? -Thanks Sowmya BS