tammyjo9
4 years agoRegular Visitor
TestComplete Script Name Report
Hi All, I'm trying to figure out how to create a report with all my script names in Test Complete per project -- without it being in a project executor report (which makes them named on the gen...
- 4 years ago
Hi,
If I got your question right, try this script:
function _testListKeywordTests() { var strList = ''; var oProps = aqObject.GetProperties(KeywordTests); var iCount = oProps.Count; for (var i = 0; i < iCount; i++) strList += oProps.Item(i).Name + '\r\n'; Log.Message('List of KeywordTests', strList); }
Is this what you are looking for?