Package ch.exense.oryon.abstraction
Interface AbstractionFacade
- All Known Subinterfaces:
SwingAbstractionFacade
,SyriusAbstractionFacade
public interface AbstractionFacade
This interface defines general methods which are independent of the module being used.
-
Method Summary
Modifier and TypeMethodDescriptionAbstractNode
findElement
(String xPath) Finds the single element matching the given XPath.List<AbstractNode>
findElements
(String xPath) Finds all elements matching the given XPath.getXPath
(AbstractNode element) Returns the XPath matching the given elementvoid
setThrottling
(Long delay) Requests to delay ALL user interactions by a fixed amount of time.
-
Method Details
-
findElement
Finds the single element matching the given XPath.An exception is thrown if the XPath does not match exactly one element.
- Parameters:
xPath
- the XPath to find.- Returns:
- the element matching the given XPath.
- Throws:
RuntimeException
- if the XPath matches zero elements, or more than one.
-
getXPath
Returns the XPath matching the given element- Parameters:
element
- an existing tree element- Returns:
- a corresponding unique XPath matching the given element.
-
findElements
Finds all elements matching the given XPath.- Parameters:
xPath
- the XPath to find.- Returns:
- a list of all elements matching the given XPath. The list will be empty if no matching elements are found.
-
setThrottling
Requests to delay ALL user interactions by a fixed amount of time.Setting a throttling delay will significantly reduce Oryon performance, and is STRONGLY DISCOURAGED in normal circumstances. Only use this method if you have a good reason to do so.
- Parameters:
delay
- throttling delay, in milliseconds. Setting it to 0 will disable throttling.
-