Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the UIA ( ui automation framework ) for a automatic gui-test and i want to read properties from the used gui objects, but the informations which are provided through the AutomationElement are not enough for me. I want to read e.g the fonts / colors etc.

Now i'm searching for a way to get the gui object behind / underlying the AutomationElement. I couldn't find a api method in the UIA for this. Somebody knows a non api method for this or e.g a way to get the gui object from the NativeWindowHandle which can be found in the automationElementInformation ?

It would be also nice if anybody could say how the UIA is working at all ( i mean how the communication & access works between the UIA and the gui objects ).

share|improve this question
1  
The point of AutomationElement is to avoid doing this. With very high odds that you simply can't get this info, fonts and colors are properties of the code that draws a window, it only lives for a very fleeting moment and isn't observable outside of the process. UI Automation source code is available from the Reference Source. There's a lot of it. – Hans Passant Jul 11 '12 at 13:30

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.