@see: L{get_parent} @rtype: list( L{Window} ) @return: List of child windows. @raise WindowsError: An error occured while processing this request.
(self)
| 434 | return self.__get_window(hWnd) |
| 435 | |
| 436 | def get_children(self): |
| 437 | """ |
| 438 | @see: L{get_parent} |
| 439 | @rtype: list( L{Window} ) |
| 440 | @return: List of child windows. |
| 441 | @raise WindowsError: An error occured while processing this request. |
| 442 | """ |
| 443 | return [self.__get_window(hWnd) for hWnd in win32.EnumChildWindows(self.get_handle())] |
| 444 | |
| 445 | def get_tree(self): |
| 446 | """ |
no test coverage detected