SAP Help Home SAP Intelligent RPA Help Portal SAP Intelligent RPA Community

Table of Contents

Enumerations
Java Core
JavaFX
Classes
Class Accordion Expand TitledPane by Text (JavaFX Accordion) Class Button Click Sync (JavaFX Button) Click (JavaFX Button) Class CheckBox Set Value (JavaFX CheckBox) Deprecated Select/Deselect Checkbox (JavaFX Check Box) Get State (JavaFX CheckBox) Class ChoiceBox Select Item by Index Sync (JavaFX ChoiceBox) Get Selected Index (JavaFX ChoiceBox) Select Item by Index (JavaFX ChoiceBox) Class ColorPicker Set Value (JavaFX ColorPicker) Get Color (JavaFX ColorPicker) Class ComboBox Click (JavaFX ComboBox) Select Item by Index Sync (JavaFX ComboBox) Get Selected Index (JavaFX ComboBox) Set Item by Index (JavaFX ComboBox) Class ComboBoxTableCell Set Value (JavaFX ComboBox TableCell) Get Selected Item (JavaFX ComboBox TableCell) Class DatePicker Set Date (JavaFX DatePicker) Get Date (JavaFX DatePicker) Class Hyperlink Click (JavaFX Hyperlink) Class Label Get Label (JavaFX Label) Class ListCell Select ListCell Item (JavaFX ListCell) Class MenuButton Click Menu Button by Index (JavaFX) Class Pagination Select Page Index (JavaFX Pagination) Get Selected Index (JavaFX Pagination) Class RadioButton Select Radio Button (JavaFX RadioButton) Get State (JavaFX Radio Button) Class ScrollBar Scroll Down (JavaFX ScrollBar) Scroll Up (JavaFX ScrollBar) Class Slider Set Slider Position (JavaFX Slider) Get Slider Position (JavaFX Slider) Class SplitMenuButton Click SplitMenuButton by Index (JavaFX SplitMenuButton) Class Tab Select Tab (JavaFX Tab) Class TableView Select Row by Index (JavaFX TableView) Class TabPane Select Tab by Index (JavaFX TabPane) Get Selected Index (JavaFX TabPane) Class TextField Set Element (Java FX TextField) Get Element (JavaFX TextField) Class TextFieldTableCell Set Table Cell Element (JavaFX TextFieldTableCell) Get Element (JavaFX TextField TableCell) Class TextInputControl Set Element (JavaFX Text Input Control) Get Element (JavaFX Text Input Control) Class TitledPane Expand/Collapse Titled Pane (JavaFX TitledPane) Class TreeCell Select Tree Cell (JavaFX TreeCell) Class TreeTableView Expand/Collapse Tree Table (JavaFX TreeTableView) Class TreeView Expand/Collapse Tree (JavaFX TreeView)
Java Screen
Java Swing

Module - JavaFX

Activities for JavaFX apps.

Class Accordion

Subset of functions and activities related to the Accordion component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Expand TitledPane by Text (JavaFX Accordion)

Expand the TitledPane in an accordion using its text value


Technical Name Type Minimal Agent Version
expand asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value string Provide the text value of the titled pane that is to be expanded

Sample Code:

await JavaApp.oPage.oAccordion.expand();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class Button

Subset of functions and activities related to the Button component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Click Sync (JavaFX Button)

Click on a button control synchronously


Technical Name Type Minimal Agent Version
clickSync asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oButton.clickSync();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Click (JavaFX Button)

Click on a button asynchronously


Technical Name Type Minimal Agent Version
click asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oButton.click();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class CheckBox

Subset of functions and activities related to the CheckBox component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Value (JavaFX CheckBox) Deprecated

Check or uncheck the checkbox


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value boolean Provide true to check, or false to uncheck

Sample Code:

await JavaApp.oPage.ocheckbox.set(true);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Select/Deselect Checkbox (JavaFX Check Box)

Check or uncheck the checkbox


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value boolean Provide true to check, or false to uncheck

Sample Code:

await JavaApp.oPage.ocheckbox.select(true);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get State (JavaFX CheckBox)

Retrieve the state of the check box ("true" if checked, "false" if unchecked)


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
state boolean Returns the state of the check box

Sample Code:

await JavaApp.oPage.oCheckBox.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class ChoiceBox

Subset of functions and activities related to the ChoiceBox component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select Item by Index Sync (JavaFX ChoiceBox)

Select the required choice box item by index synchronously


Technical Name Type Minimal Agent Version
setSync asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide item index for choice box (index starts at 0)

Sample Code:

await JavaApp.oPage.oChoiceBox.setSync(1);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get Selected Index (JavaFX ChoiceBox)

Retrieve the index for the selected choice box item


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
index number Returns the index for the selected choice box item

Sample Code:

await JavaApp.oPage.oChoiceBox.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Select Item by Index (JavaFX ChoiceBox)

Select the required choice box item by index asynchronously


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide item index for choice box (index starts at 0)

Sample Code:

await JavaApp.oPage.oChoiceBox.set("1");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class ColorPicker

Subset of functions and activities related to the ColorPicker component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Value (JavaFX ColorPicker)

Set the given hex color code.


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value string Color value to be picked

Sample Code:

await JavaApp.oPage.oColorPicker.set("000000");

Errors:

Error Class Package Description
Timeout irpa_core Timeout reached waiting element appearance


Get Color (JavaFX ColorPicker)

Retrieve the color value


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
color string Returns the color value

Sample Code:

await JavaApp.oPage.oColorPicker.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class ComboBox

Subset of functions and activities related to the ComboBox component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Click (JavaFX ComboBox)

Click to expand the combo box


Technical Name Type Minimal Agent Version
click asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oComboBox.click();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Select Item by Index Sync (JavaFX ComboBox)

Set the required combo box item by provided by index synchronously


Technical Name Type Minimal Agent Version
setSync asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide index for combo box item (index starts at 0)

Sample Code:

await JavaApp.oPage.oComboBox.setSync(1);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get Selected Index (JavaFX ComboBox)

Retrieve the index for the selected combo box item


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
index number Returns the index for the selected combo box item

Sample Code:

await JavaApp.oPage.oComboBox.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Set Item by Index (JavaFX ComboBox)

Set the required combo box item provided by index asynchronously


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide the index for the combo box item (index starts at 0)

Sample Code:

await JavaApp.oPage.oComboBox.set(1);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class ComboBoxTableCell

Subset of functions and activities related to the ComboBoxTableCell component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Value (JavaFX ComboBox TableCell)

Set the required table cell combo box item provided by text


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value string Provide the text value for the table cell combo box item

Sample Code:

await JavaApp.oPage.oComboBoxTableCell.set("value");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get Selected Item (JavaFX ComboBox TableCell)

Retrieve the value for the selected combo box table cell item


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
result string Returns the value of the combo box table cell field

Sample Code:

await JavaApp.oPage.oComboBoxTableCell.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class DatePicker

Subset of functions and activities related to the DatePicker component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Date (JavaFX DatePicker)

Set the date in the date text box.


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value string Date value to be set in "DD/MM/YYYY" format

Sample Code:

await JavaApp.oPage.oDatePicker.set("18/05/2023);

Errors:

Error Class Package Description
Timeout irpa_core Timeout reached waiting element appearance


Get Date (JavaFX DatePicker)

Retrieve the date


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
date string Returns the date

Sample Code:

await JavaApp.oPage.oDatePicker.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Subset of functions and activities related to the Hyperlink component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Click on a hyperlink control


Technical Name Type Minimal Agent Version
click asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oHyperlink.click();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class Label

Subset of functions and activities related to the Label component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Get Label (JavaFX Label)

Retrieve the value for the label control


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
label string Returns the label value

Sample Code:

await JavaApp.oPage.oLabel.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class ListCell

Subset of functions and activities related to the ListCell component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select ListCell Item (JavaFX ListCell)

Select the list cell item


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oListCell.select();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Subset of functions and activities related to the MenuButton component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Click on the menu button by index


Technical Name Type Minimal Agent Version
click asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide the index of the menu button item that must be clicked (index starts at 0)

Sample Code:

await JavaApp.oPage.oMenuButton.clcik("1");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class Pagination

Subset of functions and activities related to the Pagination component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select Page Index (JavaFX Pagination)

Select the page index for pagination control


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide the page index to be selected (index starts at 0)

Errors:

Error Class Package Description
Timeout irpa_core timout reached waiting element appearance


Get Selected Index (JavaFX Pagination)

Retrieve the index for the selected page


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
index number Returns the index for the selected page

Sample Code:

await JavaApp.oPage.oPagination.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class RadioButton

Subset of functions and activities related to the Radio Button component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select Radio Button (JavaFX RadioButton)

Select a radio button.


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value boolean Provide "true" to select radio button.

Sample Code:

await JavaApp.oPage.oRadioButton.select("true");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get State (JavaFX Radio Button)

Retrieve the state of the radio button ("true" if selected, "false" if not selected)


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
state boolean Returns the state of the radio button

Sample Code:

await JavaApp.oPage.oRadioButton.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class ScrollBar

Subset of functions and activities related to the ScrollBar component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Scroll Down (JavaFX ScrollBar)

Scroll down on a scroll bar


Technical Name Type Minimal Agent Version
scrollDown asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oScrollBar.scrollDown();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Scroll Up (JavaFX ScrollBar)

Scroll up on a scroll bar


Technical Name Type Minimal Agent Version
scrollUp asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oScrollBar.scrollUp();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class Slider

Subset of functions and activities related to the Slider component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Slider Position (JavaFX Slider)

Set the value in the slider control


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value number Slider value to be set

Sample Code:

await JavaApp.oPage.oSlider.set("5");

Errors:

Error Class Package Description
Timeout irpa_core timout reached waiting element appearance


Get Slider Position (JavaFX Slider)

Retrieve the position of the slider control


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
position number Returns the position of the slider

Sample Code:

await JavaApp.oPage.oSlider.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class SplitMenuButton

Subset of functions and activities related to the SplitMenuButton component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Click SplitMenuButton by Index (JavaFX SplitMenuButton)

Click a split menu button by index


Technical Name Type Minimal Agent Version
click asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide the index of the menu button item that must be clicked (index starts at 0)

Sample Code:

await JavaApp.oPage.oSplitMenuButton.click("1");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class Tab

Subset of functions and activities related to the Tab component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select Tab (JavaFX Tab)

Select the Tab.


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oTab.select();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TableView

Subset of functions and activities related to the TableView component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select Row by Index (JavaFX TableView)

Select the table row provided by the index


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide the table row item index to be selected (index starts at 0)

Sample Code:

await JavaApp.oPage.oTableView.select("0");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TabPane

Subset of functions and activities related to the TabPane component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select Tab by Index (JavaFX TabPane)

Select the tab by provided by index


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
index number Provide the tab index to be selected (index starts at 0)

Sample Code:

await JavaApp.oPage.oTabPane.select("0");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get Selected Index (JavaFX TabPane)

Retrieve the index for the selected tab


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
index number Returns the index for the selected tab

Sample Code:

await JavaApp.oPage.oTabPane.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TextField

Subset of functions and activities related to the TextField component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Element (Java FX TextField)

Set the value in a text field


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value string Text field value to be set

Sample Code:

await JavaApp.oPage.oTextField.set("abc");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get Element (JavaFX TextField)

Get the value of a text field


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
result string Returns the value of a text field

Sample Code:

await JavaApp.oPage.oTextField.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TextFieldTableCell

Subset of functions and activities related to the TextFieldTableCell component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Table Cell Element (JavaFX TextFieldTableCell)

Set the text within a table cell text field


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value string Text value to be set in the text field of a table cell

Sample Code:

await JavaApp.oPage.oTextFieldTableCell.set("abc");

Errors:

Error Class Package Description
Timeout irpa_core timout reached waiting element appearance


Get Element (JavaFX TextField TableCell)

Retrieve the value of the table cell text field


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
result string Returns the value of the text field table cell

Sample Code:

await JavaApp.oPage.oTextFieldTableCell.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TextInputControl

Subset of functions and activities related to the TextInputControl component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Set Element (JavaFX Text Input Control)

Set the value in the text input control component


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value string Text input control value to be set

Sample Code:

await JavaApp.oPage.oTextInputControl.set("abc");

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Get Element (JavaFX Text Input Control)

Retrieve the value of the text input control


Technical Name Type Minimal Agent Version
get asynchronous WIN-3.24 (WIN for Windows)

Output Parameters:

Name Type Description
result string Returns the value of the text input control

Sample Code:

await JavaApp.oPage.oTextInputControl.get();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TitledPane

Subset of functions and activities related to the TitledPane component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Expand/Collapse Titled Pane (JavaFX TitledPane)

Expand or collapse the titled pane


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value boolean Provide "true" to expand or "false" to collapse

Sample Code:

await JavaApp.oPage.oTitledPane.set(true);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TreeCell

Subset of functions and activities related to the TreeCell component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Select Tree Cell (JavaFX TreeCell)

Select the tree cell item


Technical Name Type Minimal Agent Version
select asynchronous WIN-3.24 (WIN for Windows)

Sample Code:

await JavaApp.oPage.oTreeCell.select();

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TreeTableView

Subset of functions and activities related to the TreeTableView component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Expand/Collapse Tree Table (JavaFX TreeTableView)

Expand or collapse the tree table view


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value boolean Provide "true" to expand or "false" to collapse

Sample Code:

await JavaApp.oPage.oTreeTableView.set(true);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.


Class TreeView

Subset of functions and activities related to the TreeView component.
Extends Technologies of the class
irpa_java.JavaCore.JavaElement JavaFX


Activities :

Expand/Collapse Tree (JavaFX TreeView)

Expand or collapse the tree view component


Technical Name Type Minimal Agent Version
set asynchronous WIN-3.24 (WIN for Windows)

Input Parameters:

Name Type Attributes Description
value boolean Provide "true" to expand or "false" to collapse

Sample Code:

await JavaApp.oPage.oTreeView.set(true);

Errors:

Error Class Package Description
Timeout irpa_core Execution timeout while waiting for the element.