robotframework-testdoc
The new tool to generate test documentation pages for your Robot Framework project.
GitHub Project
Visit the project at GitHub - robotframework-testdoc
Documentation
Visit the official documentation for more details: Documentation - robotframework-testdoc
VS Code Extension
Generate test documentation directly from the VS Code Explorer — no terminal required.
Download the latest .vsix from GitHub Releases and install it locally.
code --install-extension testdoc-vscode-<version>.vsix
See the VS Code Extension documentation for details.
Statistics
Installation
Install the tool using the following command:
pip install robotframework-testdoc
Usage
Basic Usage
testdoc suite_directory output.html
# or
testdoc suite_file output.html
Extended Usage
testdoc [OPTIONS] suite_directory output.html
[!TIP] Included Help: Visit the CLI Documentation for further arguments & details.
Output Formats
By default testdoc generates an HTML file. Use -f / --output-format to choose a different format:
# HTML (default)
testdoc tests/ TestDocumentation.html
# JSON — machine-readable suite tree
testdoc -f json tests/ TestDocumentation.json
# PDF — release-ready export (overview + TOC + suites + test cases)
testdoc -f pdf tests/ TestDocumentation.pdf
Available values: html (default), json, pdf.
Plugin Usage
You can use the testdoc tool also as plugin integration.
You have two option to use it this way:
- You can write your own HTML page as
jinja2template, add this HTML template as CLI argument while generating the docs and you will get your own HTML style as documentation page. - You can use the
mkdocsintegration to define your own mkdcs template as CLI argument and the testdoc tool will internally take care of the mkdocs page generation.
For further details about the usage, please read the official documentation.
Custom PDF Template
You can provide your own Jinja2 template for PDF rendering:
testdoc -f pdf --custom-pdf-template path/to/pdf_template.html tests/ TestDocumentation.pdf
This works out of the box. No code changes are required.
Required template contract:
- The template must contain a branch for
view == "overview". - The template must contain a branch for
view == "suite". - In the
overviewbranch, these variables are available:title(string),generated_at(string),suite_count(int),test_count(int). - In the
suitebranch, these variables are available:suite_name(string),tests(list of dicts). - Each item in
testshas:name(string),tags(list of strings, can be empty).
Recommended usage pattern:
- Start with the minimal template above.
- Change only markup/styling first.
- Keep variable names exactly as documented.
- If a section is empty, always handle it with
{% if tests %}/ fallback text.
Notes:
- Title page and table of contents are rendered by the PDF engine, not by the custom HTML template.
- You can also set
custom_pdf_templatein your TOML config file.
Use customized Jinja2 HTML Template
Use internal Mkdocs Template
Use customized Mkdocs Template
Examples
Visit the official documentation to find some Examples.
External Configuration File
The idea of the external configuration file is, having a central place for passing the known CMD arguments via file instead of CMD parameters.
This will keep your CMD line call simple & clean.
For using this config file, just call the following command:
# Generate docu with options defined in TOML file
testdoc -c path/to/config.toml tests/ TestDocumentation.html
pyproject.toml vs. custom toml file
Using the pyproject requires to define the testdoc sections with the prefix tool.
Example section start: [tool.testdoc]
Using your own custom toml-file, does not require you to use the prefix. Here, you can just use [testdoc] as section header.
Example Configuration File
[tool.testdoc]
title = "New title of HTML document"
name = "New name of root suite element"
doc = "New doc text of root suite element"
sourceprefix = "gitlab::https://gitlab.com/myrepo/repo_path"
include = ["TagA", "TagB"]
exclude = ["TagC"]
verbose_mode = false
[tool.testdoc.metadata]
Author = "Your-Name"
Version = "1.0.0"
Source = "AnySourceAsMetaData"
Contribution & Development
See Development.md for more information about contributing & developing this library.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file robotframework_testdoc-0.8.0.tar.gz.
File metadata
- Download URL: robotframework_testdoc-0.8.0.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f41550e6e6456a5ba37fc3db50f6aa52deb792575a8e2dadf08c8d29194e97cc
|
|
| MD5 |
ac123b2147369407a6763ce4a7f9f3e3
|
|
| BLAKE2b-256 |
3dc67996dc501a7ab7fbc9b128f3b58de5e571d29a79359b5292f41f49ef2d2c
|
File details
Details for the file robotframework_testdoc-0.8.0-py3-none-any.whl.
File metadata
- Download URL: robotframework_testdoc-0.8.0-py3-none-any.whl
- Upload date:
- Size: 71.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
933968b73d1679f9220ac7951605a8e07e669e159a8dd4a94ba444ec0a1d43ef
|
|
| MD5 |
a1b28b66cb9eb8f88fa07f0ba6a09307
|
|
| BLAKE2b-256 |
7fd51940f765aadf72966cbe96b86b1b5443f943c8d1bc01521a34320e9a1383
|