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?