Listener Integration
Robot Framework Dashboard provides a built-in listener integration that enables automatically sending output.xml files to the RobotDashboard server after each test run. This page explains where the listener is located, how it works internally, and how to use it with Robot Framework, Pabot, and RobotCode.
Overview
The dashboard listener is a python script that hooks into Robot Framework's Listener Interface. There are also details in the User Guide regarding the usage of listeners.
Its responsibilities include:
- Detecting when an
output.xmlfile is created - Sending the output file to the robotdashboard server
- Adding optional tags to the run
- The script is pabot compatible
- Enforcing an optional database run limit (e.g., keep only latest 100 runs)
The listener script can be found here: robotdashboardlistener.py
Important: the name of the file and the class should match. In the example it is both robotdashboardlistener, but changing it is fine if both are equal.
Basic Usage
You can attach the listener directly when running Robot Framework.
Important: make sure the server is running!
Basic test run
robot --listener robotdashboardlistener.py tests.robotWith tags
robot --listener robotdashboardlistener.py:tags=smoke,regression tests.robotWith custom host/port and a path
robot --listener path/to/listeners/robotdashboardlistener.py:host=10.0.0.5:port=8543 tests.robotFull Listener Options
The listener supports the following arguments:
| Argument | Description |
|---|---|
tags | Comma-separated list of tags attached to the test run in the Dashboard |
host | Dashboard server hostname (default: 127.0.0.1) |
port | Dashboard server port (default: 8543) |
limit | Maximum number of runs stored in the database (older runs will be auto-deleted, based on the order in the database) |
output | Required only when using Pabot with a custom output.xml name |
Example with all options
robot --listener robotdashboardlistener.py:tags=dev1,dev2:host=127.0.0.2:port=8888:limit=100 tests.robotUsing the Listener with Pabot
Pabot requires some special handling because multiple workers generate multiple temporary output.xml files.
The listener automatically detects when the final merged output is ready.
Basic Pabot usage
pabot --listener robotdashboardlistener.py tests.robotPabot with test-level splitting
pabot --testlevelsplit --listener robotdashboardlistener.py tests.robotPabot with custom output file name
When using a custom -o output file, you must pass output=<name>.xml to the listener:
pabot --testlevelsplit --listener robotdashboardlistener.py:output=custom_output.xml -o custom_output.xml tests.robotThe listener will wait for the final merged output and then send it to the Dashboard Server.
Using the Listener with RobotCode (robot.toml)
RobotDashboard also supports a listener in the robot.toml of RobotCode. The example can be found here: robot.toml Place both robot.toml and robotdashboardlistener.py in your project root (or adjust paths accordingly).
Basic usage steps
- Place
robot.tomlin project root - Ensure
robotdashboardlistener.pyis in root or update the path in the file - Install RobotCode runner
- bash
pip install robotcode-runner
- Start the dashboard server
- bash
robotdashboard --server default
- Choose one listener configuration in
robot.toml(see examples below!) - Run your tests
- bash
robotcode robot .
Example robot.toml configurations
Basic usage
[listeners]
"robotdashboardlistener.py" = []With tags
[listeners]
"robotdashboardlistener.py" = ["tags=dev1,dev2,dev3"]Custom host + port
[listeners]
"robotdashboardlistener.py" = ["tags=dev1,dev2,dev3", "host=127.0.0.2", "port=8888"]Automatic deletion when more than 100 runs exist
[listeners]
"robotdashboardlistener.py" = ["tags=dev1,dev2,dev3", "limit=100"]