ContributionsMost RecentMost LikesSolutionsRe: Running 2 or more instances of TestedApp mikef Where do we set the index value of the specific TestedApp? Thank you Re: modularize object path I found a solution and it's working! need to use the eval() function to convert string to a python object aqObject.CheckProperty(eval(TextBlock+UserName.title().replace(".","")), "WPFControlText", cmpEqual, UserName) modularize object path TestComplete version: 15.42.9.7 x64 I'm using python for the Unit test script. Question: how do you modularized an object path in TestComplete? example from this: aqObject.CheckProperty(Aliases.ApplicationName.HwndSource_MainWindow.MainWindow.StatusBar.StatusBarItem.TextblockJohnDoe, "WPFControlText", cmpEqual, "john.doe") to something like this: UserName= "john.doe" TextBlock="Aliases.ApplicationName.HwndSource_MainWindow.MainWindow.StatusBar.StatusBarItem.Textblock" aqObject.CheckProperty(TextBlock+UserName.title().replace(".",""), "WPFControlText", cmpEqual, UserName) SolvedRunning 2 or more instances of TestedApp TestComplete version: 15.42.9.7 x64 I'd like to open 2 same desktop applications as we have some scenario testing multiple users. i'm getting this error message: There is (are) 2 running instances(s) of ".exe". New instances will not be launched. Is this possible? Solved