Tagged Questions

7
votes
3answers
2k views

Experiences with UI Automation and WPF

We are developing a rather large WPF based application and would like to include some automated UI testing in our test suite (which already contains a number of unit tests). The UI Automation ...
5
votes
1answer
381 views

How can I define a ControlTemplate for my TabControl without breaking automated testing?

Summary In my WPF application, I needed a TabControl with buttons on the left, so I defined a ControlTemplate with the layout I wanted and it worked fine. However, my tester's automated testing tool ...
4
votes
1answer
364 views

UI Automation and TabControl

I have the following Toolbar <ToolBar x:Name="mainToolbar" HorizontalContentAlignment="Stretch" Style="{StaticResource mainToolBarStyle}" ...
3
votes
2answers
165 views

Get the AutomationElement for a WPF Popup

I'm working on a project that uses a popup in an editor to provide objects in a ListBox for users to double click in order to add them to their document. I'm trying to create automated tests for the ...
3
votes
2answers
549 views

What is the difference between using System.Windows.Automation and Microsoft.VisualStudio.TestTools.UITesting for WPF UI Test automation?

What is the difference between using System.Windows.Automation (commonly known as UIA) API and Microsoft.VisualStudio.TestTools.UITesting (one that is used in Coded UI Test behind the scene) for ...
3
votes
2answers
3k views

UI automation tool for a windows based WPF application with Record and Playback feauture

I am in the process of recommending an UI automation tool for a windows based WPF application in a company Which targets wide range of customers . The Application lives on a layer of WCF services for ...
2
votes
1answer
283 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
152 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
1answer
103 views

Getting started with UIAutomation

I'm trying to find a good resource to get started with UIAutomation. I need to simulate mouse input in a WPF application. Are there any good examples out there? I couldn't find any, and the MSDN ...
2
votes
3answers
325 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
379 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
496 views

How can I get to the value of my WPF UserControl DependencyProperty from UI Automation Framework?

I'm having trouble getting access to my WPF UserControl DependencyProperty values through the UI Automation Framework. I've used James McCaffreys article in MSDN as a starting point (Automating IO ...
2
votes
2answers
1k views

WPF UI automation - Doesn't support rows? (or how can I select and deselect an entire row)

Note: This is no longer an issue, the .NET 4 built-in DataGrid solves this problem I have a WPF app which is using a DataGrid; I'm using the WPF ui automation API to write some automated tests for ...
1
vote
1answer
146 views

Getting text from AvalonEdit with UIAutomation

I'm doing some work with UIAutomation and need to get the content of an AvalonEdit control in WPF. I am only able to get hold of the AvalonEdit control as a ControlType of Text: var editors = ...
1
vote
2answers
420 views

How can I send a right-click event to an AutomationElement using WPF's UI automation?

Using WPF's built-in UI automation, it's easy (though pretty verbose) to send a left-click event to an AutomationElement (such as a Button): InvokePattern invokePattern = (InvokePattern) ...
1
vote
1answer
141 views

Button, IInvokeProvider and Click

I'm just trying to figure this one out. Why does the button IInvokeProvider call the click event without doing any explicit setting? What if I wanted to automate another method like MouseEnter or ...
1
vote
1answer
246 views

Unit testing with UIAutomation

Consider that I have a MainWindow that has the following button declared in its XAML: <Button x:Name="MyButton" Command="{Binding SomeCommand}">Click me!</Button> I want to use ...
1
vote
1answer
159 views

WiPFlash, UIAutomation right click

I am using WiPFlash to automate some testing in a WPF application. I need the automation to be able to right click on a button and select one of the options from the context menu. Has any one been ...
1
vote
4answers
204 views

Dragon Naturally Speaking fails on WPF sub menus

My WPF application menus fail to work with Dragon Natually Speaking, and hence I assume other screen readers and accessibility software. I want my software to work well for my blind and disabled ...
1
vote
2answers
787 views

How can I avoid Thread.Sleep when using the WPF Automation Framework?

I am trying to use WPF UI Automation working without using spurious thread.sleep statements. What I would like to do is have a function GetElementById that continually polls until the control is ...
1
vote
1answer
143 views

Problem with System.Windows.Automation Namespace

I am implementing WPF Application and i want to use System.Windows.Automation Namespace to capture highlgihted text from applications. The Problem is that Visual Studio and Expression don't identfy ...
1
vote
1answer
194 views

How can I tell if an element matches a PropertyCondition in Microsoft UI Automation?

I'm trying to find an AutomationElement in a particular row of a GridView (so there are many identical elements). I'm iterating over the elements in the row, and I'd like to use a matcher to see if a ...
1
vote
3answers
1k views

WPF UI Automation - AutomationElement.FindFirst fails when there are lots of elements

We've got some automated UI tests for our WPF app (.NET 4); these test use the UI Automation API's. We call AutomationElement.FindFirst to find a target element, and then interact with it. Example ...
1
vote
3answers
1k views

How do I use UI Automation on a WPF ItemsControl that groups items?

I am using Microsoft UI Automation (i.e. AutomationElement) to run automated acceptance tests against my application. This has gone well, but I've hit a situation that doesn't appear to be exposed to ...
1
vote
2answers
436 views

UI-Automation cmdlet not finding the control

I am trying to test a WPF application using the UI-Automation framework that MSFT provides. There were a few powershell scripts written that invoked the cmdlets created to manipulate the visual ...
1
vote
1answer
471 views

How do I get ItemStatus from a UITestControl?

The UI Automation framework has a base class, AutomationElement, that has a property, ItemStatus, that can be used to store arbitrary strings. I'm trying to get that property from the Visual Studio ...
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
0answers
20 views

UI elements obscured from UIAutomation by UserControl

I have an automation client that uses the AutomationElement.FromPoint method to get the AutomationElement under the cursor: AutomationElement element = AutomationElement.FromPoint(point); ...
0
votes
1answer
31 views

WPF - MouseDown via AutomationPeer on DataGridCell

I've got the following code that raises the MouseLeftButtonDownEvent on a DataGridCell. DataGridCell dataGridCell = cell as DataGridCell; MouseButtonEventArgs someEventArgs = new ...
0
votes
0answers
34 views

UI Automation reports incorrect tab content in a TabControl

We have a home-grown testing framework that uses UI Automation to run tests on our WPF application, which has a Tabbed UI using TabControl. We found out that when the framework starts the application ...
0
votes
1answer
75 views

Is there a generic strategy for using AutomationId property in a WPF/Silverlight application?

The AutomationProperties.AutomationId attached property seems to have two purposes: Identifying UI controls during automated acceptance tests. Accessibility. Given that there are many cases when ...
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
72 views

In Python, how do I automate the control of a UI in a program that uses WPF?

I've been working on this Python program to try to do some automated testing. The problem is that up until recently, I've been able to use pywinauto just fine. Now, I have to control some programs ...
0
votes
1answer
142 views

How to get WPF combobox display text using UIAutomation?

I just started using UIAutomation for some testing. I got the most stuff working except this seemly simple one. I want to verify the localized text displayed in a combobox, but I couldn't figure out ...
0
votes
1answer
56 views

Cannot Retrieve Custom Control Pattern After Registration

I'm using the automation API to create custom control patterns. Now that I've created my custom patterns, I don't know how to retrieve the existence of my new patterns. I've tried to use ...
0
votes
0answers
39 views

Accessing Custom Automation Patterns in WPF4

I have completed the registration process for a custom automation pattern according to http://blogs.msdn.com/b/winuiautomation/archive/2010/12/27/uia-custom-patterns-part-3.aspx The PatternId being ...
0
votes
0answers
120 views

WPF UI Automation - Control Tree not poluated till region is clicked for a TabControl

I am doing a UI automation for a WPF application using the Microsoft UI Automation library and it works well. However my app has four screens in a TabControl. Even when I click the tab item through ...
0
votes
1answer
246 views

WPF UI Automation issue

This Thread belong to this I am asking me, where I need to insert the workaround from this I have a WPF application which has performance issue on some clients with Windows 7. On Windows XP all is ...
0
votes
0answers
309 views

how to get Yes button of Confirm MessageBox and get the textbox in one of cell in listview with UI Automation?

How to UI testing to get Yes button in confirm messagebox and get textbox in one of cell in listview? private void word_button_Click(object sender, RoutedEventArgs e) { ...
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
315 views

Wpf Docking Control with UI Automation compatibility

We have slowly been creating UI Automation tests using Ranorex on our product but have ran into several problems. We are using Telerik Wpf controls (TabControl, TreeView, Grid and Docking) and so ...
0
votes
1answer
896 views

How to access inner elements of a WPF custom control that doesn't implement the AutomationPeer class?

Recently I came to know from this article - http://blogs.msdn.com/b/patrickdanino/archive/2009/11/11/custom-controls-and-ui-automation.aspx -that controls in WPF are responsible for exposing their ...
0
votes
1answer
1k views

user32.dll FindWindowEx, finding elements by classname on remote WPF window

I have a WPF application that is being started from a command-line application. I am trying to do some simple automation (get/set text, click some buttons, etc). I cannot seem to find any of the ...
0
votes
1answer
509 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 ...
0
votes
2answers
236 views

WPF: writing smoke tests using ViewModels

I am considering to write smoke tests for our WPF application. The question that I am faced is: should we use UI automation( or some other technology that creates a UI script), or is it good enough to ...