TreeViewWrapper
Class that wraps Windows TreeView common control
The TreeViewWrapper class is accessible via the pywinauto.controls.common_controls module.
Attributes
Methods
f GetItem(self, path) ...
Read the TreeView item
- path the path to the item to return. This can be one of
the following:
- A string separated by characters. The first character must be . This string is split on the characters and each of these is used to find the specific child at each level. The represents the root item - so you don't need to specify the root itself.
- A list/tuple of strings - The first item should be the root element.
- A list/tuple of integers - The first item should be 0 representing the root element.
See the source for more information.