Library scope: | Global |
---|
Java application UI automation library using Java Access Bridge technology.
The library utilizes java-access-bridge-wrapper package to interact with Java UI. Currently only the 64-bit Windows OS is supported.
Inspecting elements
We have built an Assistant for working with Java application's element structure and Java locators. The Assistant provides copy-paste-able locators for each element and also allows testing locators against selected application.
If our tools fail to pick the locator from your target application, there is always the Access Bridge Explorer from Google that enables you to see the raw view. Please note that Access Bridge Explorer repository has been archived on July 27, 2022 and is no longer actively maintained.
The Accessibility Insights for Windows can show element properties if application framework supports Windows UI Automation (UIA), see more at using Accessibility Insights. Then the recommended library would be RPA.Windows library.
Steps to enable
- Enable the Java Access Bridge in Windows
- Set environment variable RC_JAVA_ACCESS_BRIDGE_DLL as an absolute path to WindowsAccessBridge-64.dll. It is also possible to give DLL location as library initialization parameter access_bridge_path.
C:\path\to\java\bin\jabswitch -enable set RC_JAVA_ACCESS_BRIDGE_DLL=C:\path\to\Java\bin\WindowsAccessBridge-64.dll
*** Settings *** Library RPA.JavaAccessBridge access_bridge_path=C:\path\to\Java\bin\WindowsAccessBridge-64.dll
About Java wrapper callbacks and actions
There might be a compatibility issue with callbacks and actions on target Java application. Possible reasons:
Workaround for this situation is to initialize JavaAccessBridge library with parameter ignore_callbacks=True. Then application's element information is still accessible and any actions on those elements can be performed with RPA.Desktop library. Keep in mind that you can still manuall refresh an element with Refresh Element.
Note. There are still keywords, for example. Call Element Action, which will cause error if used in this situation.
*** Settings *** Library RPA.JavaAccessBridge ignore_callbacks=True
Controlling the Java window
Keyword for this purpose is Select Window. Window selection is based on the title parameter, which can be given as a regular expressions to match the correct window. The keyword brings the window into focus and initially reads window's element structure.
Locating elements
To automate actions on the Java application, the robot needs locations to various elements using a feature called Java locators. Locator describes properties of an element.
At the moment library contains basic level support for locators.
The common locator types are name and role.
To identify element with more than one property and can be used, for example:
role:push button and name:Clear
To address element within parent element > can be used, for example:
name:Find Purchase Orders > name:NumberField
Some keywords accept element as an parameter in place of locator.
New locator type strict has been added in rpaframework==12.5.0. Currently property values of string type have been evaluated with startsWith which can match several property values. With strict set in the locator string, all locator on the right side of this definition will be matched using strict (equal matching), example:
# without strict, name can be 'Type', 'Type1', 'Type of'... Get Elements role:push button and name:Type # name must be equal to 'Type' Get Elements role:push button and strict:True and name:Type
Keyword Get Elements has extra parameter strict, which when set to True forces all locator value matches to be strict, example:
# without strict, name can be 'Type', 'Type1', 'Type of'... Get Elements role:push button and name:Type # name must be equal to 'Type' and role must be equal to 'text' Get Elements role:text and name:Type strict=True
About JavaElement object
The JavaElement was added in rpaframework==12.3.0 for easy access into ContextNode objects which have been returned by Get Elements keyword.
Keyword Get Elements still returns ContextNode objects, but with parameter java_elements=True the keyword returns JavaElement objects instead (they still contain reference to ContextNode object via node property, e.g. JavaObject.node).
Properties and methods included in the JavaElement:
Interacting with elements
By default application elements are interacted with Actions supported by the element. Most common example is click action supported by an button element.
But because application and technology support for the actions might be limited, it is also possible to opt for interaction elements by their coordinates by giving keyword parameter action=False if parameter is available.
Examples
robotframework
*** Settings *** Library RPA.JavaAccessBridge Library Process *** Tasks *** Write text into Swing application Start Process java -jar BasicSwing.jar ... shell=${TRUE} ... cwd=${CURDIR} Select Window Chat Frame Type Text role:text ... text for the textarea Type Text role:text ... text for the input field ... index=1 ... clear=${TRUE} Click Element role:push button and name:Send
Python
from RPA.JavaAccessBridge import JavaAccessBridge import subprocess jab = JavaAccessBridge() subprocess.Popen( ["java", "-jar", "BasicSwing.jar"], shell=True, cwd=".", close_fds=True ) jab.select_window("Chat Frame") jab.type_text( "role:text", "text for the textarea", enter=True ) jab.type_text( "role:text", "text for the input field", index=1, clear=True ) jab.click_element("role:push button and name:Send")
If library is not given access_bridge_path then path needs to be given by the environment variable RC_JAVA_ACCESS_BRIDGE_DLL.
The ignore_callbacks can be set to True if the target application does not support Java callback feature (property value change listeners).
ignore_callbacks: | |
---|---|
set to True if application does not support Java callback feature, defaults to False | |
access_bridge_path: | |
absolute filepath to the DLL, defaults to None | |
max_depth: | limit the height of the element tree (how deep the search goes); by default every element is taken into account and the tree of elements is built until reaching the last leaf (which might be time-consuming) |
disable_refresh: | |
disables automatic app/element refresh when this is True (saves time); by default, automatic app/element refreshes are triggered with keywords like Read Table, Wait Until Element Exists |
Refresh application element tree
Might be required action after application element structure changes after window refresh.
Call element action
locator: | target element |
---|---|
action: | name of the element action to call |
Keyword to mouse click at specific coordinates.
x: | horizontal coordinate |
---|---|
y: | vertical coordinates |
click_type: | default click, see RPA.Desktop for different click options |
delay: | how much in seconds to delay after click, defaults to 0.5 |
Click element
locator: | element to click |
---|---|
index: | target element index if multiple are returned |
action: | call click action on element (default), or use coordinates |
timeout: | timeout in seconds to find element |
click_type: | default click, see RPA.Desktop for different click options |
Click element of role push button
button_name: | name of the button to click |
---|
Close active Java window which has been accessed via `Select Window keyword.
Get list of possible element actions
locator: | target element |
---|
Get element text
locator: | target element |
---|---|
index: | target element index if multiple are returned |
Get matching elements
locator: | elements to get |
---|---|
java_elements: | if True will return elements as JavaElement on False will return Java ContextNodes |
strict: | on True all locator matches need to match exactly, on False will be using startsWith matching on non-integer properties |
return: | list of ContextNodes or JavaElements |
Python example.
elements = java.get_elements("name:common", java_elements=True) for e in elements: print(e.name if e.name else "EMPTY", e.visible, e.x, e.y) if e.role == "check box": e.click() else: java.type_text(e, "new content", clear=True, typing=False) # following does NOT return anything because search is strict # and there are no 'push butto' role elements = java.get_elements("role:push butto", strict=True)
Robotframework example.
${elements}= Get Elements ... role:push button and name:Send ... java_elements=True Evaluate $elements[0].click() Click Element ${elements}[0] action=False Type Text ... ${elements}[0] ... moretext ... clear=True ... typing=False
Return Java locator tree as list of objects.
Mostly relevant object properties are:
- ancestry
- role
- name
- description
- indexInParent
return: | list of objects |
---|
Get Java Access Bridge version information
Highlight an element
locator: | element to highlight |
---|---|
index: | target element index if multiple are returned |
List all available Java windows.
JavaWindow object contains following properties:
- Java process id (pid)
- Java window title
- Java window handle (hwnd)
The pid and title can be used to get control of the Java process by.
return: | list of JavaWindow objects |
---|
Python example.
window_list = java.list_java_windows() # By looping window list for window in window_list: if window.title == "my java window title": logging.info("Java window found") java.select_window_by_pid(window.pid) # Directly accessing if len(window_list) == 1: java.select_window_by_pid(window_list[0].pid)
Robot Framework example.
@{window_list}= List Java Windows FOR ${window} IN @{window_list} IF "${window.title}" == "my java window title" Select Window By PID ${window.pid} END END IF len($window_list)==1 Select Window By PID ${window_list[0].pid} END
Press multiple keys down simultaneously
See Desktop library documentation for supported keys
keys: | keys to press |
---|
Print current element into log and possibly into a file
filename: | filepath to save element tree |
---|---|
return: | element tree |
Print current Java window locator list into log and possibly into a file.
filename: | filepath to save locator tree |
---|---|
return: | locator tree |
Return Java table as list of lists (rows containing columns).
Each cell element is represented by JavaElement class.
locator: | locator to match element with type of table |
---|---|
visible_only: | return all the children when this is False |
return: | list of lists |
Example.
table = java.read_table(locator_table) for row in table: for cell in row: if cell.role == "check box": print(cell.row, cell.col, str(cell.checked)) else: print(cell.row, cell.col, cell.name)
Refresh an element alone.
This will ensure the latest data is available in the targeted element, thus gaining speed when dealing with big apps that won't require an entire global refresh. The obtained Java element is returned.
locator: | element to refresh |
---|---|
index: | target element index if multiple are returned |
returns: | the Java element found by the passed locator |
Select menu by clicking menu elements
menu: | name of the menu |
---|---|
menuitem: | name of the menu item |
Selects Java application window as target for the automation using Java window title.
title: | application window title |
---|---|
bring_foreground: | |
if application is brought to foreground or not | |
timeout: | selection timeout |
Selects Java application window as target for the automation using Java process ID (pid).
pid: | application process id |
---|---|
bring_foreground: | |
if application is brought to foreground or not | |
timeout: | selection timeout |
Selects Java application window as target for the automation using Java window title.
title: | application window title |
---|---|
bring_foreground: | |
if application is brought to foreground or not | |
timeout: | selection timeout |
Override library display scale factor.
Keyword returns previous value.
factor: | value for the new display scale factor |
---|---|
return: | previous display scale factor value |
Set mouse position to element center
element: | target element |
---|
Call Java Access Bridge process shutdown
Toggle dropdown action on element
locator: | element locator |
---|---|
index: | target element index if multiple are returned |
Type text into coordinates defined by locator
locator: | target element |
---|---|
text: | text to write |
index: | target element if multiple are returned |
clear: | should element be cleared before typing |
enter: | should enter key be pressed after typing |
typing: | if True (default) will use Desktop().type_text() if False will use Desktop().press_keys() |
Wait until element(s) matching the locator are found within given timeout or raises ElementNotFound exception.
locator: | locator to match element |
---|---|
timeout: | timeout in seconds to find element |
return: | element(s) if found |
Wait until element is focused
locator: | target element |
---|---|
index: | target element index if multiple are returned |
timeout: | timeout in seconds to wait, default 0.5 seconds |
Wait until element text contains expected text
locator: | target element |
---|---|
text: | element text should contain this |
index: | target element index if multiple are returned |
timeout: | timeout in seconds to wait, default 0.5 seconds |
Wait until element text equals expected text
locator: | target element |
---|---|
text: | element text should match this |
index: | target element index if multiple are returned |
timeout: | timeout in seconds to wait, default 0.5 seconds |