Tagged Questions

0
votes
0answers
13 views

Fiddler with White UI automation

Hi I have very wired problem. I have a WPF application that calls web services. When I run the application I can see the communication to the services through fiddler. I wrote some UI automation …
6
votes
4answers
282 views

Is there Anyone who Successfully Implement UI Test Automation Regime using Microsoft UI Automation?

I am looking for an Automated UI test framework/ software tool. In the past I have been using TestComplete, and although it's a good piece of software, but the concept of GUI test automation was …
0
votes
0answers
59 views

Assigning AutomationId to a ReportViewer control (hosted in WPF)

Hi, I'm trying to do some UI testing using the White UI Automation framework, but I've run into a bit of a challenge when trying to get a handle to a WinForms ReportViewer control. The application is …
0
votes
4answers
103 views

css Gif white background stroke?

Hi Does anyone know how to fix the white background stroke in the css that you see when a transparent gif is overlayed on a colour? Thanks for your help Regards Judi
1
vote
2answers
62 views

How can I get a control’s DataContext from an external application using UI Automation (and/or White)

I'm using White to drive the UI of a WPF app, and it's worked well so far. I'm at the point however, where I need to poke into the internal state of the app under test to check some conditions. …
0
votes
1answer
73 views

Testing PictureBox in white

Hello, 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 …
4
votes
2answers
237 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 …
1
vote
1answer
152 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 …