Tagged Questions
3
votes
1answer
337 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
1answer
285 views
White UI Automation : Get WPF DataGrid cell value?
I'm very new to white project, and I wast just checking its features... In my work, I deal intensively with wpf & datagrids,
I couldn't get the value of datagrid cell when the column is ...
2
votes
1answer
154 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
3answers
326 views
White UIAutomation click() stops working on different platform
I'm using White to automate the BDD testing of our C# WPF UI.
My first couple of tests are working well on my development machine (running Windows 7). However, when I try and run the same code on ...
2
votes
2answers
382 views
WPF UI Automation with Caliburn.Micro?
I am attempting to write some UI automation tests for a WPF application that is using Caliburn.Micro and White. I am using CM's builtin conventions to bind my controls to the view model's properties ...
2
votes
2answers
376 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 ...
1
vote
1answer
54 views
Elements not bound when testing with White framework
I have a wpf application with a simple window that shows a text in a textbox bound to a property of the ViewModel. When I execute the application I can see the text in the textbox, but when I execute ...
1
vote
2answers
444 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
2answers
47 views
How do I import the white project into an IronPython program?
I am working on some UI automation software and just recently moved the project from Python to IronPython since the requirements for this project state it will only be used in a Windows environment. ...
0
votes
1answer
111 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
2answers
307 views
WPF, White Automation, drag and drop hanging
I'm currently trying to automate a test case using the White UI-Automation framework.
In doing this I'm having some trouble with drag and drop. I'm trying to drag from a button to a point on the ...
0
votes
1answer
511 views
Fiddler with White UI automation
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 test ...