Robot Framework library for for working with RabbitMQ.
Install the library from PyPI using pip:
pip install robotframework-rabbitmq
See keyword documentation for RabbitMQ library on GitHub.
*** Settings ***
Library    RabbitMq
Library    Collections
*** Test Cases ***
Simple Test
    Create Rabbitmq Connection    my_host_name    15672    5672    guest    guest    alias=rmq
    ${overview}=    Overview
    Log Dictionary    ${overview}
    Close All Rabbitmq ConnectionsApache License 2.0