Tagged Questions

7
votes
2answers
625 views

Integration testing with White

Has anyone got experience with the white framework? www.codeplex.com/white ? I'm thinking about using it for the next project for basic smoke tests of our windows client. I'd like some advice on ...
2
votes
1answer
169 views

How to get an instance of White.Core.UIItems.WindowItems.Window which can automate a WPF Window that is created inside an integration test?

I have created an integration test using the White automation framework. This is the start of the integration test: var app = Application.Launch("WPFIntegrationTest.exe"); var window = ...
2
votes
2answers
387 views

How do I access a MessageBox with white?

I have a simple message box in a WPF application that is launched as below: private void Button_Click(object sender, RoutedEventArgs e) { MessageBox.Show("Howdy", "Howdy"); } I can get white to ...