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 Name.

At runtime they update this text field with a few sentences, and I am unable to see this update in inspect.exe or in my own AutomationElement object. Is there a way to "getText" other than AutomationElement.Current.Name or variants thereof? The only Pattern Available on the AutomaitonElement is "IsLegacyIAccessiblePatternAvailable", and even this pattern maintains a non-changing blank Name and Help attribute.

Is this not possible within the scope of UIAutomation to demand the current string being displayed in an object? Should I request the developer add another control pattern that will make this accessible? If so which one?

Ideally I think automation should have a minimal impact on the development and design process, with exceptions for things like AutomationID being defined- is this philosophy itself flawed?

link|improve this question
The textual content of a edit field is usually the Value - which would be ValuePattern.Value, or the Value field of IAccessible. Name for a text field is usually the label - eg. a "File: [....]" edit field would have an unchanging name of "File:". – BrendanMcK Nov 11 '11 at 0:15
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.