MCPcopy
hub / github.com/cluic/wxauto / GetChildren

Method GetChildren

wxauto/uiautomation.py:5955–5964  ·  view source on GitHub ↗

Return List[Control], a list of `Control` subclasses.

(self)

Source from the content-addressed store, hash-verified

5953 return
5954
5955 def GetChildren(self) -> List['Control']:
5956 """
5957 Return List[Control], a list of `Control` subclasses.
5958 """
5959 children = []
5960 child = self.GetFirstChildControl()
5961 while child:
5962 children.append(child)
5963 child = child.GetNextSiblingControl()
5964 return children
5965
5966 def _CompareFunction(self, control: 'Control', depth: int) -> bool:
5967 """

Callers 15

GetChildControlMethod · 0.95
_download_fileMethod · 0.45
GetAllMessageMethod · 0.45
GetNewMessageMethod · 0.45
GetGroupMembersMethod · 0.45
__init__Method · 0.45
OCRMethod · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
GetAllFriendsMethod · 0.45
quoteMethod · 0.45

Calls 2

GetFirstChildControlMethod · 0.95
GetNextSiblingControlMethod · 0.80

Tested by

no test coverage detected