Interface SyriusAbstractionFacade
- All Superinterfaces:
AbstractionFacade
Note that a few more available methods are inherited from the generic interface AbstractionFacade
.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
blockExternalApplication
(Boolean block) Blocks the opening of external applications.void
clearMultiComboSelections
(String xPath) Sets all items of a multi-choice combo box to an unselected state.void
Clicks an element.void
clickListItem
(String xPath, String value) Clicks an item in a list.void
clickMenuItem
(String xPath) Clicks a menu item.void
clickTableCell
(String tableXpath, Integer rowId, Integer colId) Clicks a table cell.void
clickTableRow
(String tableXpath, Integer rowId) ❗ Clicks a table row.void
clickTaskItem
(String xpath) Deprecated.void
doubleClick
(String xPath) Double clicks an element.void
doubleClickTableCell
(String tableXpath, Integer rowId, Integer colId) Double clicks a table cell.void
doubleClickTableRow
(String tableXpath, Integer rowId) ❗ Double clicks a table row.void
enableImplicitWait
(Boolean enableImplicitWait) Sets the "implicit wait" flag.void
❗ Expands all nodes in a tree.getComboBoxItems
(String xPath) Gets the items in a combo box.getComboBoxSelection
(String xPath) Gets the currently selected item of a combo box.Gets the URL of the last application opened by Syrius.getListItems
(String xPath) Gets the items in a list.getListSelection
(String xPath) Gets the currently selected item of a list.getMultiComboItems
(String xPath) Gets all items of a multi-choice combo box, regardless of selection state.getMultiComboSelections
(String xPath) Gets only the selected items of a multi-choice combo box.Returns the current value of the flag controlling the dysfunctional nodes behavior.getTableCellValue
(String tableXpath, Integer rowId, Integer colId) Gets the textual content of a table cell.int
getTableColumnIdByHeader
(String tableXpath, String header) Searches a table column by header.int
getTableSize
(String tableXpath) Gets the number of rows of a table.getTabList
(String xPath) Gets a list of tab titles.Returns the textual content of an element.boolean
Checks whether an element is enabled and can be interacted with.Checks whether the "implicit wait" flag is enabled.boolean
isMaximized
(String xpath) Checks whether a Frame is maximized.boolean
isSelected
(String xpath) Checks whether a checkbox or radiobox is selected.boolean
isTabEnabled
(String xPath, String title) Checks if a tab exists and is currently selected.boolean
Checks whether an element is visible.void
rightClick
(String xPath) Right clicks an element.void
rightClickTableCell
(String tableXpath, Integer rowId, Integer colId) Right clicks a table cell.void
rightClickTableRow
(String tableXpath, Integer rowId) ❗ Right clicks a table row.void
Selects an element in a SelectionPanel.void
Selects a tab by title.void
selectTableRow
(String tableXpath, Integer rowId) Deprecated.❗ UseclickTableCell()
instead.void
sendKeys
(String xPath, CharSequence... charSequences) Sends a sequence of characters to an element.void
setComboBoxSelection
(String xPath, String item) Selects a combo box item.void
setFileForNextUpload
(String filename) Sets the file that is to be used for the next file upload in Syrius.void
setListSelection
(String xPath, String value) Selects an item in a list.void
setMaximized
(String xpath, Boolean maximized) Toggle Frame maximized state.void
setMultiComboSelection
(String xPath, String item, Boolean selected) Sets the selection state of a particular multi-choice combo box item.void
setRemoveDysfunctionalNodes
(Boolean remove) Syrius FX only: Controls the behavior when encountering dysfunctional nodes (i.e., model nodes which do not have an associated UI node, or where the UI node is not attached to any scene).void
Sets the textual content of an element.void
setTextField
(String xPath, String value) Deprecated.❗ UsesetText()
instead.byte[]
Takes a snapshot of a single component.byte[]
Deprecated.❗ UsetakeScreenshot()
instead.byte[]
Takes a screenshot.boolean
verifyElement
(String xpath) Deprecated.❗ UseisVisible()
instead.Methods inherited from interface AbstractionFacade
findElement, findElements, getXPath, setThrottling
-
Method Details
-
verifyElement
Deprecated.❗ UseisVisible()
instead. -
setTextField
Deprecated.❗ UsesetText()
instead. -
selectTableRow
Deprecated.❗ UseclickTableCell()
instead. -
clickTaskItem
Deprecated.❗ Useclick()
instead. -
takeScreenhost
Deprecated.❗ UsetakeScreenshot()
instead. -
isImplicitWaitEnabled
Boolean isImplicitWaitEnabled()Checks whether the "implicit wait" flag is enabled.- Returns:
- a boolean indicating whether implicit wait is enabled.
-
enableImplicitWait
Sets the "implicit wait" flag. This flags defaults totrue
, and controls whether agent commands will wait for the UI to finish processing the requested command. The only relevant use case where this flag should be disabled is when the program is to be exited programmatically (e.g. by clicking the "File / Exit" menu item), as in this case there will not be any reaction from the system anymore after invoking the command.- Parameters:
enableImplicitWait
- status of the "implicit wait" flag to be set.
-
takeScreenshot
byte[] takeScreenshot()Takes a screenshot.- Returns:
- the screenshot as a byte array, in PNG format.
-
getLastOpenedExternalApplication
String getLastOpenedExternalApplication()Gets the URL of the last application opened by Syrius.- Returns:
- the URL of the last application opened by Syrius.
-
blockExternalApplication
Blocks the opening of external applications.- Parameters:
block
- whether or not external applications should be blocked.
-
setFileForNextUpload
Sets the file that is to be used for the next file upload in Syrius.This will prevent showing the file upload dialog, instead directly feeding the given file to Syrius, as if the user had selected it in the upload dialog.
IMPORTANT: This method will prevent exactly one upload dialog and directly set the file instead, afterwards normal Syrius behavior is restored. In other words, if you need to automate multiple file uploads, you will need to call this method multiple times, once before each upload.- Parameters:
filename
- the name of the file to use for the next upload. It is strongly recommended to use absolute file names.- Throws:
RuntimeException
- if the given file does not exist, or is not a normal file.
-
setRemoveDysfunctionalNodes
Syrius FX only: Controls the behavior when encountering dysfunctional nodes (i.e., model nodes which do not have an associated UI node, or where the UI node is not attached to any scene).- Parameters:
remove
- a boolean controlling the behavior.
true: Nodes will be entirely discarded from the tree. false: The visible attribute of the node will be set to false.
-
getRemoveDysfunctionalNodes
Boolean getRemoveDysfunctionalNodes()Returns the current value of the flag controlling the dysfunctional nodes behavior.
This may be useful in cases where behavior needs to be controlled at runtime, for instance to save the current state, then change it, and then revert to the original state.- Returns:
- the current behavior value.
-
getTableColumnIdByHeader
Searches a table column by header.- Parameters:
tableXpath
- the XPath of the table.header
- the header to be searched.- Returns:
- the index of the column having the specified header.
-
snapshot
Takes a snapshot of a single component. The component must be an actual displayable node (i.e., Label, Panel etc., not MenuItems, Styles or other logical elements). Frames are not supported either: either snapshot their top-level child, or use thetakeScreenshot()
method instead. Snapshots are taken of the entire component at its logical size. This may be larger than what is physically visible on screen, for instance if the component is displayed in a ScrollPane; this behavior is generally desired because it allows to capture the full content of a component.- Returns:
- a snapshot image of the component as a byte array, in PNG format.
-
isEnabled
Checks whether an element is enabled and can be interacted with.- Parameters:
xpath
- the XPath of the element to check- Returns:
- true if the XPath matches an enabled element, false otherwise.
-
isVisible
Checks whether an element is visible.- Parameters:
xpath
- XPath of the element to check- Returns:
- true if the XPath matches exactly one visible element, false otherwise.
-
sendKeys
Sends a sequence of characters to an element.- Parameters:
xPath
- the XPath of the node to send the keys to.charSequences
- the character sequences to send to the node. Example for sending Alt + P :sendKeys("/path/to/node", Keys.ALT, "p");
- See Also:
-
rightClick
Right clicks an element.- Parameters:
xPath
- the XPath of the element.
-
doubleClick
Double clicks an element.- Parameters:
xPath
- the XPath of the element.
-
click
Clicks an element.Note: for MenuItems, please use
clickMenuItem()
instead.- Parameters:
xPath
- the XPath of the element.
-
getText
Returns the textual content of an element.- Parameters:
xpath
- the XPath of the element.- Returns:
- the textual content of the element.
-
setText
Sets the textual content of an element.- Parameters:
xPath
- the XPath of the element.value
- the text to be set.
-
getListItems
Gets the items in a list.- Parameters:
xPath
- the XPath of the list element.- Returns:
- the items contained in the list.
-
getListSelection
Gets the currently selected item of a list.- Parameters:
xPath
- the XPath of the list element.- Returns:
- the list's currently selected item.
-
setListSelection
Selects an item in a list.- Parameters:
xPath
- the XPath of the list element.value
- the item to be selected.
-
clickListItem
Clicks an item in a list.- Parameters:
xPath
- the XPath of the list element.value
- the item to be selected.
-
getComboBoxItems
Gets the items in a combo box.- Parameters:
xPath
- the XPath of the combo box element.- Returns:
- a list of all items of the combo box.
-
getComboBoxSelection
Gets the currently selected item of a combo box.- Parameters:
xPath
- the XPath of the combo box element.- Returns:
- the currently selected item of the combo box.
-
setComboBoxSelection
Selects a combo box item.- Parameters:
xPath
- the XPath of the combo box element.item
- the item to be selected in the combo box.
-
getMultiComboItems
Gets all items of a multi-choice combo box, regardless of selection state.- Parameters:
xPath
- the XPath of the multi-choice combo box element.- Returns:
- a list of all items of the element.
-
getMultiComboSelections
Gets only the selected items of a multi-choice combo box.- Parameters:
xPath
- the XPath of the multi-choice combo box element.- Returns:
- a list of the currently selected items of the element.
-
clearMultiComboSelections
Sets all items of a multi-choice combo box to an unselected state.- Parameters:
xPath
- the XPath of the multi-choice combo box element.
-
setMultiComboSelection
Sets the selection state of a particular multi-choice combo box item.- Parameters:
xPath
- the XPath of the multi-choice combo box element.item
- the item whose selection state is to be set.selected
- the selection state to set.
-
rightClickTableRow
❗ Right clicks a table row.
IMPORTANT: This method is equivalent to callingrightClickTableCell(tableXPath, rowId, 0)
, and in fact, is implemented as such. In order to keep the API clean and manageable, this method will probably be deprecated soon.Therefore, please use
rightClickTableCell(String, Integer, Integer)
instead.- Parameters:
tableXpath
- the XPath of the table element.rowId
- the index of the row to be interacted with.
-
doubleClickTableRow
❗ Double clicks a table row.
IMPORTANT: This method is equivalent to callingdoubleClickTableCell(tableXPath, rowId, 0)
, and in fact, is implemented as such. In order to keep the API clean and manageable, this method will probably be deprecated soon.Therefore, please use
doubleClickTableCell(String, Integer, Integer)
instead.- Parameters:
tableXpath
- the XPath of the table element.rowId
- the index of the row to be interacted with.
-
clickTableRow
❗ Clicks a table row.
IMPORTANT: This method is equivalent to callingclickTableCell(tableXPath, rowId, 0)
, and in fact, is implemented as such. In order to keep the API clean and manageable, this method will probably be deprecated soon.Therefore, please use
clickTableCell(String, Integer, Integer)
instead.- Parameters:
tableXpath
- the XPath of the table element.rowId
- the index of the row to be interacted with.
-
getTableSize
Gets the number of rows of a table.- Parameters:
tableXpath
- the XPath of the table element.- Returns:
- the number of rows of the table.
-
getTableCellValue
Gets the textual content of a table cell.- Parameters:
tableXpath
- the XPath of the table element.rowId
- the index of the row.colId
- the index of the column.
-
rightClickTableCell
Right clicks a table cell.- Parameters:
tableXpath
- the XPath of the table element.rowId
- the index of the row to be interacted with.colId
- the index of the column to be interacted with.
-
doubleClickTableCell
Double clicks a table cell.- Parameters:
tableXpath
- the XPath of the table element.rowId
- the index of the row to be interacted with.colId
- the index of the column to be interacted with.
-
clickTableCell
Clicks a table cell.- Parameters:
tableXpath
- the XPath of the table element.rowId
- the index of the row to be interacted with.colId
- the index of the column to be interacted with.
-
isTabEnabled
Checks if a tab exists and is currently selected.- Parameters:
xPath
- the XPath of the tab (Notebook) element.title
- the title of the tab to be checked.- Returns:
- true if the tab exists and is selected, false otherwise.
-
getTabList
Gets a list of tab titles.- Parameters:
xPath
- the XPath of the tab (Notebook) element.- Returns:
- the list of tab titles.
-
selectTab
Selects a tab by title.- Parameters:
xPath
- the XPath of the tab (Notebook) element.title
- the title of the tab to be selected.
-
clickMenuItem
Clicks a menu item.- Parameters:
xPath
- the XPath of the menu item element.
-
isSelected
Checks whether a checkbox or radiobox is selected.- Parameters:
xpath
- the XPath of the element.- Returns:
- true if the element is selected, false otherwise.
-
select
Selects an element in a SelectionPanel.- Parameters:
xPath
- the XPath of the SelectionPanel element.value
- the label of the element to be selected.
-
expandAll
❗ Expands all nodes in a tree.
❗ Currently not implemented for Syrius FX.- Parameters:
xpath
- the XPath of the tree element.
-
isMaximized
Checks whether a Frame is maximized.- Parameters:
xpath
- XPath of the Frame- Returns:
- true if the Frame is maximized, false otherwise.
-
setMaximized
Toggle Frame maximized state.- Parameters:
xpath
- XPath of the Frame
-
click()
instead.