Skip to content
github-actions[bot] edited this page Nov 12, 2025 · 6 revisions

Importobot Wiki

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.

Navigation

User Documentation

Technical Documentation

Development

Quick Start

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)

Project Status

Test Lint Python 3.10+

  • Tests: 2,105 tests passing
  • Code quality: ruff & mypy clean
  • Performance: ~6s to convert 1000 tests (see Benchmarks)

Clone this wiki locally