Skip to main content

Small Library that makes it easier to create scripts to automate IBM Maximo's frontend

Project description

Maximo GUI Connector for Python

A small package that uses Selenium to automate the most basic operations you could do on IBM Maximo Asset Management

Installation

  1. Install the package by typing pip install maximo-gui-connector
  2. Download the chromedriver (see this note) matching your browser version and put it into PATH

You can import the package into your script and use it like this:

import maximo_gui_connector as MGC

YOUR_USERNAME = ""
YOUR_PASSWORD = ""
YOUR_GROUP = ""

if __name__ == "__main__":
	try:
		maximo = MGC.MaximoAutomation({ "debug": False, "headless": False })
		maximo.login(YOUR_USERNAME, YOUR_PASSWORD)

		maximo.goto_section("changes")
		maximo.setFilters({ "status": "!=REVIEW", "owner group": YOUR_GROUP })

		data = maximo.getAllRecordsFromTable()
		print(data)

		maximo.logout()

	except Exception as e:
		print(e)

	finally:
		print()
		input("Press any key to stop the script and close chrome")

		"""
		So that if the error occurs before the `maximo` object is initialized, 
		`maximo.close()` doesn't throw a `NameError` exception
		"""
		try:
			maximo.close()
		except NameError as e:
			pass

(In)complete Reference

This section is still work in progress, so some properties/methods could miss.

Name Description
MaximoAutomation(CONFIG) Instantiates the Maximo object. Takes a dictionary as an argument. Possible configuration:

Name Description
debug If True, the logger will contain more information useful for debugging purposes.

Defaults to False
headless If True, the browser will start hidden.

Defaults to False
Example:
maximo = MGC.MaximoAutomation({ 
	"debug": False, 
	"headless": True 
})
login(USERNAME, PASSWORD) Performs the login using the given credentials
logout() Performs the logout
goto_section(SECTION_NAME) Uses the Goto button to change section. It needs to be the text without the "(MP)" part...

close() Closes the browser. Make sure to always call it after logout() to avoid running out of available sessions in Maximo after a while
waitUntilReady() Pauses the script until Maximo has finished loading.

For example you can use it after changing section or clicking on an element to wait until Maximo has finished rendering or retrieving the data
setFilters(FILTERS) Sets the filters of a table in the form of a dictionary where the key is the filter name (ex. Summary, in red) and the value is the filter value (ex. "Hostname not reachable", in blue)


To set multiple filters just add more key/value pairs. Ex:

setFilters({ 
	"Summary": "*Test*",
	"Priority": "1", 
	"Global Issue?": "Y" 
})

getBrowserInstance() Returns the selenium.webdriver instance of the browser so you can have more control or implement custom actions (like clicking on a particular element, inserting text somewhere and more...)
goto_tab(TAB_NAME) Clicks on the specified tab when inside a record detail (ex. inside an Incident/Change, ecc...)

getAllRecordsFromTable() Returns a dictionary containing all the details of all the records of a list table (ex. when inside Changes open owned by my groups).
waitForInputEditable()
setNamedInput(TARGETS) Takes a dictionary as argument and searches inputs labelled by the string given as key; if presen, its value is set to the value of the corresponding pair in the dictionary



To set the highlighted fields of the image you would have to call the method like this:

setNamedInput({ 
	"New Status:": "NEW_STATUS",
	"New Owner Group:": "MY_GROUP",
})

To be continued...

Other

Known Limitations

  • Works only with Chrome (for now)
  • The Webdriver must be in the PATH (cannot pass another path)

IMPORTANT

As of now (v. 0.1.1) this package only allows to use the Chromedriver (which MUST be installed). The possibility to change the browser is in roadmap.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

maximo-gui-connector-0.6.2.tar.gz (19.7 kB view hashes)

Uploaded Source

Built Distribution

maximo_gui_connector-0.6.2-py2.py3-none-any.whl (22.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page