Native Win32 Windows Handling
Telerik Testing Framework provides generic support for Win32 Windows handling. Under the 'ArtOfTest.Common.Win32' namespace, Telerik Framework provides two key objects that you can use in your test code to generically manage Win32 Windows and Dialogs.
WindowManager class: WindowManager provides your tests a mechanism to enumerate through windows that are children of a specific window handle or all windows that are children of the desktop. The WindowManager exposes the 'GetWindows()' method which you can use to build the enumeration. Once you call GetWindows, the Items collection (exposed by WindowManager) will be populated. Each item in that collection is a Window object.
Window class: The Window class is a wrapper around a Win32 Window handle. The class provides basic properties and methods to gather information from that specific window (i.e. Size, IsMaximized, etc.) and invoke actions on that window (i.e. Close(), Minimize(), GetBitmap(), SetFocus(), etc.).
In addition to the functionality described above, the WindowManager exposes a static method 'FindWindowRecursively()' that allows users to search the windows hierarchy recursively looking for a window's caption or classname. Caption search can also be done using a partial caption.
Let's take an example to illustrate how these two classes can help provide automation functionality for native Win32 windows: