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

is there any tutorial of UI Automation for WP7? I have been asking mr Google, but noting. I Look at microsoft webpage

http://msdn.microsoft.com/en-us/library/system.windows.automation.automationproperties(v=VS.95).aspx

There is at least one way of using Ui Automation at a WP7 appz, but how ???

share|improve this question
Can you please provide more details (and an example) about what you mean by "UI Automation" and what you're trying to achieve? – Matt Lacey Nov 9 '10 at 21:15

closed as not constructive by Richard Szalay, Will Jan 19 '12 at 16:52

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

There's no actual user interface automation support (automating clicking buttons), though you might be able to use alternatives:

  • Build you own complex system to point and click on the emulator surface (very challenging, probably difficult to maintain and synchronize)
  • Use UI automation peers in code to help simulate user actions

It is usually easier to just build a good view and model architecture and test those things imo.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.