MSAASettingsAddWindow Method |
Namespace: SmartBear.TestLeft.Options
Both WndClass and WndCaption can include wildcards, * and ?, to match multiple window types based on some common pattern. The asterisk (*) matches a string of any length, including an empty string. The question mark (?) matches any single character or no character.
Examples:
Window Type | Description |
---|---|
NetUIHWND | Objects with the window class "NetUIHWND". |
Vfp* | Objects whose window class begins with "Vfp". |
XTPReport;@text=My Report | Objects with the window class "XTPReport" and caption "My Report". |
*;@text=My Report | Objects with the caption "My Report" and any window class. |
*;@text=*Report | Objects whose caption ends with "Report". |
* | All objects. (Not recommended for performance reasons. Consider using specific object types instead.) |