Tagged Questions
0
votes
1answer
131 views
UIAutomation won't retrieve children of an element
I can see that an element with specific Automation ID has children in the Inspect tool:
But when I try to retrieve them like this:
AutomationElement aPane = mainWindow.FindFirst(TreeScope.Subtree, ...
0
votes
0answers
83 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
56 views
Development guidelines to enable Windows UI Autoamtion [closed]
I was wondering if anyone has a list of development guidelines that can be given to the development team, so that it would help UI Automation.
I am specifically interested in suggestions regarding ...
0
votes
1answer
172 views
UIA: Get ControlType from control type name (string)
Using Microsoft UI Automation. I have a string which represents UIA control type, like "Window" or "Button". I would like to get a ControlType object which fits this string. How to do it? Is some ...
1
vote
2answers
148 views
Getting / ussing full path to find controls in UIA and White
I'm using Microsoft UI automation + White framework. Is it possible to get a full path from to the control from the top parent, and then use it to find an element? For example, use UI spy to get the ...
0
votes
1answer
135 views
Get a specific tab in MSIE 9
I am using Watin 2.1 to try to test file download and file open functionality for a website.
This worked well in Internet Explorer 8, but since Internet Explorer 9 there is a yellow-white download bar ...
0
votes
1answer
191 views
How to click on a “pane” using UI automation library?
We have an application in which I need to click on a Pane. I tried to use the following code, which I use to click on a button, but it gave Unsupported pattern exception.
InvokePattern click_pattern ...
0
votes
2answers
146 views
Does anyone have some links/online material explaining how coded UI test works?
We have used UI Automation for automating our application and wanted to move the scripts from UI automation to the coded UI. I need to understand how it works behind the scene. Please share any ...
4
votes
2answers
445 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 ...
0
votes
2answers
253 views
AutomationElement: cached element (via GetCachedChildren) to “live” element
I have a ComboBox containing a list (which is standard for a combobox) that has a lot of elements - more than 100. I want to find certain entries to select them. To find the entries, I compare a given ...
2
votes
1answer
585 views
Windows UI Automation API
I have been trying to figure this out for a while so any help would be greatly appreciated. I am using UI Automation in my client to monitor and report on user selection within another application. I ...
2
votes
1answer
715 views
Is it possible to get the selected text of any window including non-UI automation elements?
Is it possible to get the selected text of any window including non-UI automation elements?
I want to be able to get the selected text of the current contents of the currently focused element of any ...
0
votes
1answer
611 views
UISpy and UIA Verify showing different property values on the same program
I have a program I'm testing that has its close button enabled at one point and disabled at another.
UISpy shows 'isEnabled' at both points to be 'true'
UIAVerify shows 'isEnabled' at the first point ...
0
votes
1answer
186 views
UI automation not tracking Telerik controls
I am creating an application which will record the all the application level and control events . I am using the White recorder framework, it is able to trace the other controls which are not telerik ...
1
vote
2answers
1k views
Event will not fire upon listbox item selection - .Net UIAutomation framework
I am learning the .NET UI Automation framework today. So what i have done so far (referring to various articles)
Have a WinForm with Listbox, PictureBox, TextBox and Button controls on it. Refer to ...
0
votes
1answer
294 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
1k views
Coded UI Test vs. Microsoft UI Automation library
I want to do UI testing of my complex WPF application. I have come across two libraries for UI Automation:
Coded UI Test
Microsoft UI Automation Library.
I am confused in above two options. Please ...
3
votes
2answers
760 views
Using Caching with AutomationElements does not give me a speedup - intended or wrong usage?
I am trying to increase the speed of some UI Automation operations. I stumbled across the (not so well) documented caching possibility.
From what I have understood, the whole operation (if you have a ...
