Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 650 Bytes

README.md

File metadata and controls

36 lines (28 loc) · 650 Bytes

AMQP library for Robotframework

Installation

Using pip

⚠️ Not implemeted yet

pip install robotframework-amqp

Using the install script

python setup.py install

Usage

In the settings section

*** Settings ***
Test Teardown     After tests
Test Setup        Before tests
Library           RmqMsgSend

In the keywords section

*** Keywords ***
Before tests
    Init AMQP connection    ${amqp_host}  ${amqp_port}   ${amqp_user}  ${amqp_pass}   ${amqp_vhost}
    Set amqp destination    ${amqp_exchange}        ${amqp_routing_key}

After tests
    close amqp connection