-
-
Notifications
You must be signed in to change notification settings - Fork 2
Home
github-actions[bot] edited this page Nov 12, 2025
·
6 revisions
This wiki contains all documentation for Importobot.
Importobot converts Zephyr, Xray, and TestLink exports into Robot Framework test suites. It was built to automate a manual conversion process that took hours for a single export.
Importobot aims to generate Robot files that require no manual edits after conversion. If a step cannot be converted reliably, it is flagged with a comment to prevent silent errors in the final test suite.
If you are new to the project, see the Getting Started guide.
User Documentation
Technical Documentation
Development
import importobot
# Converts all Zephyr JSON exports in a directory to Robot Framework files.
converter = importobot.JsonToRobotConverter()
result = converter.convert_directory("/zephyr/exports", "/robot/tests")
print(result)- Tests: 2,105 tests passing
- Code quality: ruff & mypy clean
- Performance: ~6s to convert 1000 tests (see Benchmarks)