robot
¶
The root of the Robot Framework package.
The command line entry points provided by the framework are exposed for programmatic usage as follows:
- robot.run: Function to run tests.
- robot.run_cli: Function to run tests with command line argument processing.
robot.rebot
: Function to post-process outputs.robot.rebot_cli
: Function to post-process outputs with command line argument processing.robot.libdoc
: Module for library documentation generation.robot.testdoc
: Module for test case documentation generation.
All the functions above can be imported like from robot import run
.
Functions and classes provided by the modules need to be imported like
from robot.libdoc import libdoc_cli
.
The functions and modules listed above are considered stable. Other modules in this package are for internal usage and may change without prior notice.
Tip
More public APIs are exposed by the robot.api package.