ContributionsMost RecentMost LikesSolutionsRe: TestComplete unable to recognize child objects in an Excel Macro file Thank you. Now I see that Object Spy able to identify the objects Re: Excel Form Windows List object is not recognised Thank you. Now, I see object spy able to identifying the objects. Re: TestComplete unable to recognize child objects in an Excel Macro file Its calling coordinate points. Something like... 'Clicks at point (33, 50) of the 'F3Server1a730000' object. TestComplete unable to recognize child objects in an Excel Macro file Hi, I am new to this forum and I am new to TestComplete as well. I am running a Excel macro application in which, I have difficult in identifying the objects (which are image buttons basically) inside a particular group or a frame. TestComplete identify the Frame using object spy but unable to identify the image button inside the frame. Is there any plugin that I should use for Excel marco? Or any suggestion? Thanks! SolvedRe: Unable to solve SYNTAX error and Unable to execute DDT textThank you!Unable to solve SYNTAX error and Unable to execute DDT textHi, I just recorded a script and I am facing couple of issues here... 1. System show syntax error at the "catch" statement. Dont know why? 2. When I dont use "try catch" statements and just use a function test1(), my script does not perform and I get JScript run-time error at DDT.ExcelDriver("C:\\LaxTest1.xlsx","Sheet1", true); . I installed "AccessDatabaseEngine.exe" file as suggested for ACEDriver setup. Eventhen I get JScript Runtime error. If you need any info, please let me know. Below is the script. function Main() { try { DDT.ExcelDriver("C:\\LaxTest1.xlsx","Sheet1", true); DDT.CurrentDriver.DriveMethod("Unit1.Test1"); } catch { Log.error("Exception", exception.description); } } function Test1() { var browser; var page; var form; var textbox; var table; Browsers.Item(btIExplorer, "", Browsers.pX64).Run("http://www.cnn.com/"); browser = Aliases.browser; browser.ToUrl("http://www.qaforums.com/"); page = browser.pageSoftwareTestingAndQualityAss; form = page.form; textbox = form.textboxLoginname; textbox.Click(27, 13); textbox.SetText(DDT.CurrentDriver.Value("UserName")); textbox.Keys("[Tab]"); table = form.tableAutonumber1; table.passwordboxLoginpass.SetText(DDT.CurrentDriver.Value("Password")); table.submitbuttonButtlogin.ClickButton(); page = browser.pageSoftwareQualityAssuranceForu2; page.Wait(); page.table.linkSearch.Click(); page = browser.pageSoftwareQualityAssuranceForu; page.Wait(); form = page.table.form; //form.selectForum.SelectItem(2); form.selectForum.ClickItem("*AutomatedQA / SmartBear TestComplete"); table = form.tableTablesurround.cell.tableTableborders; textbox = table.cellLighttable.textboxWords; textbox.Click(40, 7); textbox.SetText("DataDriven"); table.submitbuttonButtsubmit.ClickButton(); page = browser.pageSoftwareQualityAssuranceForu3; page.Wait(); page.table.linkLogout.Click(); browser.pageSoftwareQualityAssuranceForu4.Wait(); } SolvedUnable to Find item from ComboBoxWhen I try to run my script using TestComplete 9 (TC9), TC9 does not recogize the item in a combo box (highligted below). Please note that, I am noice to TestComplete... function Test1() { var browser; var page; var form; var textbox; var table; Browsers.Item(btIExplorer, "", Browsers.pX64).Run("http://www.cnn.com/"); browser = Aliases.browser; browser.pageCnnComBreakingNewsUSWorldWea.Wait(); browser.ToUrl("http://www.qaforums.com/"); page = browser.pageSoftwareTestingAndQualityAss; page.Wait(); form = page.form; textbox = form.textboxLoginname; textbox.Click(27, 13); textbox.SetText("XXXXXXXX"); textbox.Keys("[Tab]"); table = form.tableAutonumber1; table.passwordboxLoginpass.SetText("XXXXXXX"); table.submitbuttonButtlogin.ClickButton(); page = browser.pageSoftwareQualityAssuranceForu2; page.Wait(); page.table.linkSearch.Click(); page = browser.pageSoftwareQualityAssuranceForu; page.Wait(); form = page.table.form; //Script fails here form.selectForum.ClickItem("AutomatedQA / SmartBear TestComplete"); table = form.tableTablesurround.cell.tableTableborders; textbox = table.cellLighttable.textboxWords; textbox.Click(40, 7); textbox.SetText("DataDriven"); table.submitbuttonButtsubmit.ClickButton(); page = browser.pageSoftwareQualityAssuranceForu3; page.Wait(); page.table.linkLogout.Click(); browser.pageSoftwareQualityAssuranceForu4.Wait(); } Solved