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

I need to automate a Winform application. How do I set the AtumationID (or AutomationName) like the the XAML in this article does?

From this stack overflow article the answer seems to be no, unless I switch the application to a WPF application (so I can use XAML to define the controls).

I have tried this naive approach:

  AutomationElement formAutomaton = AutomationElement.FromHandle(this.Handle);
  formAutomaton.Current..Name = "SandboxResponseDialogName";
  formAutomaton.Current..ClassName = "SandboxResponseDialogClassName";
  formAutomaton.Current.AutomationId = "SandboxResponseDialogID;

But at this point in the constructor for the control, these Automation properties have getters only; no setters.

share|improve this question

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.