RackReaver / remedy-tools

This package leverages selenium to create tickets in the back-end gui of BMC Remedy.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remedy Tools

This package leverages selenium to create tickets in the back-end gui of BMC Remedy.

Getting Started

This package was created to programmatically create tickets in BMC Remedy when an api is unavailable or access to it is not possible. This project was made possible with the use of selenium which is used to simulate a user submitting a ticket through the back-end gui. This is a semi-automated process for creating tickets, because the Remedy system (depending on its configuration) requires user authentication, this means your user token will be in use by the chromedriver and opening Remedy in another browser will cause the process to fail.

Prerequisites

To use this package is will require the chromedriver from chromium.

Installation

This package is not available on PyPi at this time. Please use the following command to install from github:

$ pip install https://github.com/RackReaver/remedy-tools.git

How to use

>>> from remedy-tools import RemedyTools
>>> client = Client(remedy_url, chromedriver_path)
>>>
>>> details = {
>>>     'customers': '',
>>>     'queue_name': '',
>>>     'summary': '',
>>>     'notes': '',
>>>     'service': '',
>>>     'work_details': '',
>>>     'operational_tier_1': '',
>>>     'operational_tier_2': '',
>>>     'operational_tier_3': ''
>>> }
>>>
>>> ticket_number = client.WorkOrder(**details)

TO-DO

  • Integrate selection of priority into details dictionary (currently auto selects Medium)

Built With

Authors

License

This project is licensed under the Apache License - see the LICENSE file for details

Acknowledgments

  • Adam Sadovsky - XPath Helper - XPath-based Parsing Framework (Chrome Extension)

About

This package leverages selenium to create tickets in the back-end gui of BMC Remedy.

License:Apache License 2.0


Languages

Language:Python 100.0%