Forum Discussion

tammyjo9's avatar
tammyjo9
Regular Visitor
4 years ago
Solved

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...
  • AlexKaras's avatar
    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?