getAuiTreePart()
Get part of the AUI tree of the tested application.
Syntax
getAuiTreePart(
partSelector STRING)
RETURNS xml.DomDocument
- partSelector is the name of the AUI part to retrieve.
Usage
This function returns part of the AUI tree as an XML document.
The part selector can be:
- The AUI_CURRENT_SELECTOR constant
- A Form Selector
- A Window Selector
- A CurrentDialogSelector()
- A DialogSelector()
For example:
# Current Window/Form AUI tree, use ggc.AUI_CURRENT_SELECTOR constant.
LET doc = ggc.getAuiTreePart(ggc.WindowSelector(ggc.AUI_CURRENT_SELECTOR))
LET doc = ggc.getAuiTreePart(ggc.FormSelector(ggc.AUI_CURRENT_SELECTOR))
# Form from another window by name
LET doc = ggc.getAuiTreePart(SFMT("%1/%2", ggc.WindowSelector("w2"), ggc.FormSelector("form")))
# Current form from another window
# Here 2 selectors are combined, first the Window, then the form, separated by a /
LET doc = ggc.getAuiTreePart(SFMT("%1/%2", ggc.WindowSelector("w2"), ggc.FormSelector(ggc.AUI_CURRENT_SELECTOR)))
# Current dialog AUI tree by name
LET doc = ggc.getAuiTreePart(ggc.DialogSelector("orders_dlg"))
# Current dialog AUI tree
LET doc = ggc.getAuiTreePart(ggc.CurrentDialogSelector())