Tagged Questions

7
votes
2answers
614 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 ...
3
votes
1answer
336 views

WPF, Project White and Infragistics

I am trying to use Project White to write automated tests for my WPF application. It is all going well until I try to interact with Infragistics controls. Has anyone had any experience of this set up ...
2
votes
0answers
551 views

Test automation - Win32 app - White/UI automation - problem with recognizing objects

I’m looking for alternative for existing tests written in QTP for my Win32 application written in Borland C++. My candidate is White which based on UI Automation because it’s native solution, I can ...
2
votes
2answers
375 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 ...
0
votes
1answer
110 views

White framework documentation and sample for testing WPF application UI

I am planning to use White framework with NUnit to test my WPF application. The assembly zip available to download from http://white.codeplex.com zip I downloaded for assemblies has a documentation ...
0
votes
1answer
320 views

Testing PictureBox in white

I am currently evaluating the White testing framework. Pretty amazing stuff! Everything looks pretty promising, but I have run into a small wall. How can I test a .NET 2.0 PictureBox? There is no ...