Tagged Questions

AutomationElement represents a UI Automation element in the UI Automation tree, and contains values used as identifiers by UI Automation client applications. It is found within the System.Windows.Automation namespace.

learn more… | top users | synonyms

4
votes
1answer
216 views

Access Silverlight window within Chrome via System.Windows.Automation

This is probably futile, but I'm wondering if anyone out there has experience doing this. I'm trying to access a Silverlight application hosted within Google Chrome by using System.Windows.Automation ...
1
vote
0answers
15 views

Set DateTimePicker element via AutomationElement

I want to be able to set a DateTimePicker element to a certain time via AutomationElement. It stores the time as "hh:mm:ss tt" (i.e. 10:45:56 PM). I get the element as such: ValuePattern p = ...
0
votes
0answers
40 views

UIAutomation with “” (Empty String) Name value, does not reflect changes during runtime

One application I'm automating some tests for is initializing a Text field (UIA_TextControlTypeId(0xC364)) and the developer has it set to initialize as a blank "" for its contents and corresponding ...
0
votes
0answers
34 views

Contains Dialog?

I am trying to determine if a specific ie window (based on title) has an open dialog box using a windows form in Visual Studio 2010 (similar to how UISpy functions). I've looked into using the ...
0
votes
0answers
125 views

UIAutomation AutomationElement force refresh .current and all descendants

I would like to refresh the tree structure of the top level automationelement object (the desktop element) and all of its descendants. The problem I have ran into is a particular program I am testing ...
0
votes
1answer
218 views

working with automationelement

I want to test a windows application that is formed with Windows Forms. I decided to work with the library automationelements. The problem is that i dont know how to use it propertle. For example: ...
0
votes
1answer
113 views

automationelement write

Im working on a test to test a desktop application. Im using automation elements, from the API of microsoft. I want to write on textboxs. How can I write in a textbox that i get with an ...