Package ch.exense.oryon.modules.swing
Interface SwingAbstractionFacade
- All Superinterfaces:
AbstractionFacade
This interface defines the methods available when using the Swing module.
Note that a few more available methods are inherited from the generic interface AbstractionFacade
.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Clicks an element.void
clickPoint
(String xPath, Integer x, Integer y) Clicks a point within an element.void
doubleClick
(String xPath) Clicks an element.getSelectedValue
(String xpath) Gets the currently selected item of a combo box.Gets the text of an element.Gets all items of a combo box.boolean
Checks whether an element is visible.void
rightClick
(String xPath) Right clicks an element.void
selectItemByValue
(String xpath, String value) Selects a combo box item.void
Selects a tab of a JTabbedPane.void
Sends keyboard input to an element.Methods inherited from interface AbstractionFacade
findElement, findElements, getXPath, setThrottling
-
Method Details
-
click
Clicks an element.- Parameters:
xPath
- the XPath of the element.
-
clickPoint
Clicks a point within an element.- Parameters:
xPath
- the XPath of the element.x
- the X coordinate, relative to the element's bounding box.y
- the Y coordinate, relative to the element's bounding box.
-
sendKeys
Sends keyboard input to an element.Keyboard events are sent one by one, as if the text was entered character by character.
- Parameters:
xpath
- the XPath of the element.text
- the text to send.
-
getText
Gets the text of an element.- Parameters:
xpath
- the XPath of the element.- Returns:
- the textual content of the element.
-
doubleClick
Clicks an element.- Parameters:
xPath
- the XPath of the element.
-
rightClick
Right clicks an element.- Parameters:
xPath
- the XPath of the element.
-
isVisible
Checks whether an element is visible.- Parameters:
xpath
- the XPath of the element.- Returns:
- true if the element is visible, false otherwise.
-
selectItemByValue
Selects a combo box item.- Parameters:
xpath
- the XPath of the combo box element.value
- the item to select.
-
getValues
Gets all items of a combo box.- Parameters:
xpath
- the XPath of the combo box element.- Returns:
- a list containing the combo box items.
-
getSelectedValue
Gets the currently selected item of a combo box.- Parameters:
xpath
- the XPath of the combo box element.- Returns:
- the currently selected item.
-
selectTab
Selects a tab of a JTabbedPane.- Parameters:
xPath
- the XPath of the JTabbedPane element.title
- the name of the tab to select.
-