QTP / UFT Code Documentation

I am exploring ways to document my code in the form of JavaDocs.

Any ideas?

I am using UFT 11.52

So far I have seen NaturalDocs + Perl.

Any other ideas?

Thanks in advance.

+6
source share
3 answers

At least one solution looks

  • practical
  • mature
  • comes in the form of source code (consists of one huge (but very professionally written ) VBS script that generates fragments of documentation)
  • and absolutely free :

VBSdoc, "VBScript API Documentation Generator"

See http://www.planetcobalt.net/sdb/vbsdoc.shtml .

The author seems very competent, given his high reputation for SO (see https://stackoverflow.com/users/1630171/ansgar-wiechers ) and the overall quality of its content on the website.

Of course, it is built for stand-alone VBS scripts, and not for QTP / UFT scripts. But this should not be an obstacle, since the source code is available.

I would like to hear from you about experience with this. Feel free to edit them in this answer, whether it is accepted or not.

+2
source

I had success using Natural Docs a few years ago. This is one of the few things I wrote about: automatic code documentation for QTP

+1
source

There is a product called Test Design Studio, an alternative IDE for QuickTest and UFT. One of the key features that it provides is the ability to generate detailed documentation. It uses XML-style comments to tag your code, and these comments provide documentation. The same comments also provide detailed IntelliSense for editing your code.

He does exactly what you are talking about.

Test design studio

0
source

Source: https://habr.com/ru/post/955245/


All Articles