https://github.com/marketsquare/robotframework-jmslibrary
A library for Robot Framework to connect to several JMS Providers using jPype
https://github.com/marketsquare/robotframework-jmslibrary
Last synced: about 1 year ago
JSON representation
A library for Robot Framework to connect to several JMS Providers using jPype
- Host: GitHub
- URL: https://github.com/marketsquare/robotframework-jmslibrary
- Owner: MarketSquare
- License: apache-2.0
- Created: 2025-06-05T13:41:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-16T13:45:11.000Z (about 1 year ago)
- Last Synced: 2025-06-16T14:50:53.946Z (about 1 year ago)
- Language: Python
- Size: 11.6 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# robotframework-jmslibrary
Robot Framework library for sending and receiving JMS messages to different JMS providers like ActiveMQ and WebLogic.
📕 [Keyword Documentation](https://marketsquare.github.io/robotframework-jmslibrary/JMS.html)
## Getting started
### Installation
`pip install --upgrade robotframework-jmslibrary`
### Usage
```RobotFramework
*** Settings ***
Library JMS
*** Test Cases ***
Send And Receive JMS Messages
Create Producer RobotQueue1
Send Hello from Robot Framework
Create Consumer RobotQueue1
Receive == Hello from Robot Framework
Send JMS Messages
Create Producer RobotQueue4
Send Message Hello from Robot Framework
Create Consumer RobotQueue4
Receive == Hello from Robot Framework
```