Have you looked at White TestStack?
Sample code:
Application application = Application.Launch("foo.exe");
Window window = application.GetWindow("bar", InitializeOption.NoCache);
Button button = window.Get<Button>("save");
button.Click();
I don’t think it can get better than that. The library is created by ThoughtWorks.
Related Contents:
- How to remove all event handlers from an event
- Get a Windows Forms control by name in C#
- Passing data between forms
- How to make a window always stay on top in .Net?
- Show Console in Windows Application?
- How can I make something that catches all ‘unhandled’ exceptions in a WinForms application?
- c# open a new form then close the current form?
- How do I drag and drop files into an application?
- Close a MessageBox after several seconds
- How to make multi-language app in Winforms?
- Showing a Windows form on a secondary monitor?
- How to kill a thread instantly in C#?
- DataGridView bound to a Dictionary
- Convert json to a C# array?
- mail sending with network credential as true in windows form not working
- What’s the difference between Application.ThreadException and AppDomain.CurrentDomain.UnhandledException?
- C# Form.Close vs Form.Dispose
- C# Validating input for textbox on winforms
- What happens if I don’t call Dispose on the pen object?
- Capture multiple key downs in C#
- Trying to use the C# SpellCheck class
- How to drag and move shapes in C#
- Databinding to List – See changes of data source in ListBox, ComboBox
- Generic base class for WinForm UserControl
- Proper way to dispose a new Form
- C# Windows Forms Application – Updating GUI from another thread AND class?
- C# vertical label in a Windows Forms
- WinForms RadioButtonList doesn’t exist?
- Viewing PDF in Windows forms using C# [closed]
- A textbox/richtextbox that has syntax highlighting? [C#] [closed]
- How do I double buffer a Panel?
- Call and consume Web API in winform using C#.net
- How do I capture the mouse move event
- How to draw on a zoomed image?
- How to change listview selected row backcolor even when focus on another control?
- Open link in new TAB (WebBrowser Control)
- Loading image from code using relative path in Windows Forms
- Cross-thread Winforms control editing [duplicate]
- How to add event handler for dynamically created controls at runtime?
- Show controls added programmatically in WinForms app in Design view?
- Mute Windows Volume using C#
- Using C# to search a CSV file and pull the value in the column next to it
- Detecting whether on UI thread in WPF and Winforms
- Adding Text to DataGridView Row Header
- C# Winform ProgressBar and BackgroundWorker
- How can I fill the area(s) between two Series of Splines or Lines
- Remove top and bottom padding from Text drawn on an Image
- Controls in container form come over child form?
- How to access a WinForms control from another thread i.e. synchronize with the GUI thread?
- Exposing events of underlying control