Tagged Questions
9
votes
6answers
1k 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 ...
2
votes
1answer
286 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
155 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
0answers
556 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
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
1answer
493 views
Using White/UIAutomation How to get a right-click context menu
When using UIAutomation I can't seem to be able to get a reference to the context menu that is shown when a right click is command is executed.
The following example shows a case where I opened up a ...
1
vote
3answers
350 views
How to run White + Teamcity (Winforms application)
I'm trying to run UI-tests (written using white). When I run them using NUnitConsole everything works fine. When I try to run them using TeamCity I get the following exception Test(s) failed. ...
1
vote
2answers
930 views
C# - Control another application's windows using Thoughtworks White
I'm creating a C# program and I need to control another application. I found this
example, but it doesn't really work for me (or at least I can't make it work).
1) The application is already running ...
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
1answer
70 views
UI Automation Verify v/s UISpy - The way they find UI elements
I am trying to automate UI interactions for a C++ MFC application. I tried to find elements' automation ID using UISpy and UIAVerify tools. I am on win2k3.
There is a tab control, the automation ID ...
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
0answers
62 views
Couldnt load file or assembly 'Bricks.dll…' error with IronPython
I am using WHITE and IronPython 2.7 in VS2010 to write some UI automation scripts.
I have a simple application which gets launched by:- (no error there)
application = ...
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
121 views
Handling UAC prompts when doing UIAutomation
Is there a way to access the UAC prompts via UIAutomation (I'm writing a test for an installation process).
From http://msdn.microsoft.com/en-us/library/ms742884.aspx it looks like there is a way to ...
0
votes
3answers
425 views
How to enable a button using UIAutomation or White
I'm trying to automate an installation wizard and I needed to click on a button that is not enabled.
I know that this can be done using Windows Messages, but I was wondering if there is already ...
0
votes
2answers
390 views
bubble unhandled exception to white automation from silverlight
I am using the white automation API to test a silverlight app, but when an unhandled exception occurs in silverlight I don't know of a way to report this back to the unit test or check in the white ...
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 ...