Forum Discussion

CBleunven's avatar
CBleunven
Contributor
7 years ago
Solved

Accessing TC documentation for previous version

Hi,

I would like to access to the documentation of previous Test Complete version. How is this possible ?

Thank you for help,

Christophe

  • richie 

     

    You can  run this script online

     

    def str = 'https://whatevs.azurewebsites.net/path?token=eyJ0eXAiOiJKV1Qi&value=123456789'
    def map = new URL(str).query?.split('&').collectEntries{ [(it.split('=').first()): it.split('=').last()]}
    log.info map.token
    log.info map.value
  • richie 

    You can do this way also:-

     

    def fullURL = "https://whatevs.azurewebsites.net/?token=eyJ0eXAiOiJKV1Qi&value=123456789";
    String[] val = fullURL.split('&')
        for (String exp : val) {
            log.info exp.split('=')[1]
        }

    It's just a suggestion. But nmrao solution would be the best approach to use proper groovy and coding standards.

4 Replies

  • Hi,

     

    What version do you need? 

    You can try to open Help -> Contents from the main menu, it should give you what you need.

    • CBleunven's avatar
      CBleunven
      Contributor

      Hi baxatob,

      I use the version 9.0.1069.7.

      I get it in the windows help form. Regret the web version that was more usefull but it will probably do the job.

      Thank you for help,

      Christophe

      • tristaanogre's avatar
        tristaanogre
        Esteemed Contributor

        The web version only displays the documentation for the currently released version.  So, if you're running an older version of TC, then the installed help file is what you should use.  There is, content wise, no difference between what's in the installed help and what's on the web... just the web is more easily searchable and navigable than the help.