ContributionsMost RecentMost LikesSolutionsRe: Can I pass the object Property Name as a parameter Thanks Ryan! That was so simple I can't believe I wasn't able to figure that out. Really appreciate the help! Can I pass the object Property Name as a parameter I have used FindAllChildren to get all the children of a window object and put it in an array (objArray). I am trying to pass the Property Name (myName) and Property Value (myValue) to find the index in the array where a match is found. Here's part of the JScript code: function getIndex(objArray, myName, myValue) { var i; for(i=0; i<=objArray.length; i++) { if(objArray[i].myName == myValue) .... { .... } This function is failing since it is looking for "myName" Property Name instead of the string that was passed (ie I was trying to pass "ClrClassName" to myName). Is there a way to use pass the Property Name as a parameter for the above use? Thanks! SolvedRe: Post log to Jira automatically Hi Tanya, Just wondering if the feature to automatically post to Jira has been implemented in the latest TestComplete (10.5)? If not, I would like to request this feature as well. Thanks! Re: TestExecute fails on CheckPropertyI was running TestExecute version 10.40.2015 and apparently there's a bug in that version. I usually get notification of a newer version but did not this time and even when I check for updates the system tells me there are no updates available. Customer Care informed me that there's a new version 10.40.2018 which I can download from my.smartbear.com. This newer version has fixed the issue I'm encountering. TestExecute fails on CheckPropertyHi, I have a script that works without any issues when executing it from TestComplete. However, when I use TestExecute, it keeps failing on the CheckProperty method. In this particular script, I am just opening a window and checking to make sure the window exists. aqObject.CheckProperty(Aliases.WolfMaint.frmMain, "Exists", cmpEqual, true); Even if I just comment this code, I cannot perform any actions to this object because it cannot be found. Again, this works just fine in TestComplete. Thank you, Rome