ContributionsMost RecentMost LikesSolutionsRe: Using TestComplete API to directly access Windows ObjectsSo I found the easiest way to get Testcomplete working with Cucumber/Ruby is to convert the TCConnect.bas file included in the VB folder and once you've conneceted to the TC Api you can then use cucumber as the test framework to drive windows automation. If anyone is interested in Ruby/Cucumber and TestComplete send me message..samtreweek at gm*il dotcom Using TestComplete API to directly access Windows ObjectsI would like to be able to use testcomplete window's object recognition capability but call this from the API. e.g. Call Aliases.WORDPAD.wndWordPadClass.MainMenu.Click("Format|Font...") I want to execute this from say, visual basic. Something similar to this. set ap = CreateObject("TestComplete.TestCompleteApplication") ap.Aliases.WORDPAD.wndWordPadClass.MainMenu.Click("Format|Font...") Sam