0
votes
0answers
23 views

How to get values assigned via ParentTemplate with WPF automation?

There is xaml: <Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
0
votes
1answer
31 views

Does TestComplete support the use of AutomationProperties in WPF (XAML)

We have UI automation tests running in TestComplete and we want to use the AutomationProperties provided by Microsoft. I can not see the AutomationId property in the Object Spy of TestComplete, how ...
5
votes
0answers
150 views

Is UI Automation really a good choice for the WPF application testing? [closed]

When talking about automating the UI tests conversation always ends up with the UI Automation. Is it the only option? I personally don't like it for one main reason - complexity. It is designed to ...
0
votes
0answers
87 views

Using UI Automation to close window in unit test

I'm using UI Automation to run a unit test that tests whether a window closes: bool hasClosed = false; CustomWindow.Closed += new EventHandler((sender, e) => hasClosed = true); ...
1
vote
0answers
46 views

How do I use UI Automation Library to calculate load time for UIElement/FrameworkElement on button click?

My application has a button which creates a UIElement/FrameworkElement on the fly. I want to use the UI Automation library to click on the button so the element shows up. My problem I want to ...
2
votes
1answer
102 views

MS UI automation - Custom DataGrid

currently i am working on automating one of my .net based application using WPF(in Excel vba).UI spy is not recognizing one of the control(Grid) as an object.Is there any way to select an item from ...
1
vote
1answer
99 views

wpf textbox: trouble with default sizing and UI automation behaviour

I have a wpf TreeView with customized Items. Each node is a wpf Border with a wpf expander inside. The expander contains the child items of the node, and so on. So every TreeViewNode has its items ...
0
votes
0answers
126 views

InvokedEvent not firing for AutomationElement

I'm trying to do some UIAutomation in C#. I'm trying to attach to the click event of a button, but the event does not seem to be firing. The button I'm trying to attach to has some caveats though. ...
0
votes
1answer
205 views

AutomationElement get real Type

How to get real Type of AutomationElement (for example TextEdit and so on)? GetType() return System.Windows.Automation.AutomationElement.
0
votes
1answer
125 views

Cannot find Login submenu from Context menu by using Windows Automation

I am trying to automate login and file download from an application. I could login by getting the Menu item (on the toolbar) and expanding it and selecting the 'logon' menu item in the submenu. I got ...
0
votes
1answer
131 views

UIAutomation testing to detect if a button is set as default

I've been googling around for an answer to this, but not found anything so far. I'm writing a number of UIAutomation tests for a WPF application, but I can't seem to determine if a button is set as ...
6
votes
3answers
806 views

ContentControl is not visible when application starts via UI Automation test, but its visible when application starts by user

We are using the prism and WPF to build application. Recently we started using UI Automation (UIA) to test our app. But some strange behavior occurred when we run UIA test. Here's simplified shell: ...
1
vote
1answer
295 views

Cannot find controls after using FindFirst or FindAll methods for AutomationElement

I automate ui test for wpf application. I trying to find controls, after make some steps, but allways when i use FindFirst or FindAll methods, many controls in window is lost. Now, i did an ...
0
votes
3answers
424 views

FindFirst always returns null AutomationElement

I am trying to test some custom controls with the UI Automated framework. One of my controls has a base class of TextBox and the other inherits from Control. I can find my first control with my tests, ...
3
votes
1answer
377 views

Outdated UI automation tree

I am trying programming an automated tester application using the new native Microsoft UI Automation interface 3.0 (in VC++ 2010, Win7). The Application Under Test (AUT) is a WPF application. Almost ...
0
votes
0answers
468 views

Why AutomationProperties are needed in WPF

As per my understanding, AutomationProperties can be utilized to identify names of controls by UI Automation clients. I want to understand need to create separate set of automation properties, and ...
0
votes
1answer
381 views

How to programmatically push a ToggleButton?

I have this code which can programmatically push a button, but I would like a version to work for ToggleButton. public static void PushButton(Button b) { ButtonAutomationPeer peer = new ...
4
votes
2answers
448 views

Modal dialogs causing UI automation to hang

I'm trying to implement UI automation in a WPF application but whenever a modal dialog appears the UI automation will hang until the dialog is manually closed. So far I've tried using a second thread ...
1
vote
2answers
467 views

Avoid switching focus while using UI Automation

Just out of curiosity I decided to write a simple tool with the functionality similar to UI Spy. Basically it displays a tree of controls and allows seeing each control's property. Now I've started ...
0
votes
1answer
295 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
324 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 ...
3
votes
1answer
1k 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 ...
0
votes
1answer
363 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
314 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
335 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 ...
2
votes
1answer
428 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 ...
2
votes
1answer
767 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
370 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 ...
0
votes
1answer
114 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
1answer
296 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 ...
1
vote
1answer
317 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
3k 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) ...
0
votes
2answers
1k views

WPF UI Automation issue

This Thread belong to this I am asking where do 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 ...
1
vote
1answer
445 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 ...
3
votes
2answers
400 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 ...
1
vote
2answers
1k 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 ...
2
votes
1answer
561 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 ...
4
votes
1answer
747 views

UI Automation and TabControl

I have the following Toolbar <ToolBar x:Name="mainToolbar" HorizontalContentAlignment="Stretch" Style="{StaticResource mainToolBarStyle}" ...
3
votes
4answers
1k 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 ...
3
votes
2answers
2k 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 ...
2
votes
2answers
697 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 ...
1
vote
1answer
341 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
465 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 ...
0
votes
1answer
641 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 ...
1
vote
1answer
2k 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 ...
3
votes
1answer
812 views

AutomationProperties.Name VS x:Name

There is no difference for the "CodedUI test builder" between the AutomationProperties.Name and x:Name. But the first one can override the second one. Also the AtomationProperties.Name supports data ...
0
votes
1answer
2k 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 ...
2
votes
2answers
1k 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 ...
6
votes
1answer
864 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 ...
2
votes
1answer
241 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 2