A class within System.Windows.Automation; represents a UI Automation element in the UI Automation tree, and contains values used as identifiers by UI Automation client applications.
0
votes
1answer
121 views
Using Windows.Automation, can I locate an AutomationElement by regex?
I have an object tree that has row objects within a table parent. I'm attempting to put all these rows into an AutomationElementCollection
AutomationElementCollection asdf = ParentTableObj.FindAll
...
0
votes
0answers
74 views
AutomationElements in VBA
I have the following code:
Option Explicit
Sub test()
Dim Automation As New CUIAutomation
Dim App As IUIAutomationElement
Set App = FindChildByAutomationId(Automation.GetRootElement, ...
0
votes
0answers
85 views
Automation FindFirst on TreeScope does not find element
I have a problem with TreeScope finding an element in Internet Explorer when searching the Name property and ControlType property.
mainElement is the AutomationElement representing "internet ...
0
votes
0answers
68 views
Getting the source of current page without sending new request (using Automationelement)
The concept might sound a bit strange in lieu of the title, but I'll make it a bit clearer what I want to do:
If you request the current page source in firefox, if it hasn't changed, firefox does not ...
0
votes
0answers
156 views
AutomationElement FindAll() doesn't return any children
Here is my code:
AutomationElementCollection myCollection = myAutomationElement.FindAll(TreeScope.Children, new PropertyCondition(AutomationElement.LocalizedControlTypeProperty, "someControlType"));
...
1
vote
0answers
250 views
AutomationElement can't find row cell values (but UISpy does)
I'm trying to get data from a window that has 3 lists (SysListView32).
I do the same on the three of them, both UISpy and Inspect DO see rows and cells in the three of them, but when in code two of ...
0
votes
0answers
201 views
Find ListItem inside sysListView32 using AutomationElement
I was trying to send double click to a listview datagrid in a external application. I couldn't, so I decided to try AutomationElement.
If I do this, child is of type DataItem:
AutomationElement ...
0
votes
3answers
421 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, ...
0
votes
1answer
170 views
AutomationElement.FromHandle() execution time is intermittently slow
I am working on UI test automation and have noticed that usually AutomationElement.FromHandle is quite fast, but occasionally it takes 30 seconds to return an AutomationElement. From my limited ...
1
vote
0answers
188 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
196 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
40 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
784 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 ...
1
vote
1answer
672 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
282 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 ...
4
votes
1answer
362 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 ...
