user1514132
user1514132

Reputation: 11

Need UI testing && analyzing tool for Windows

I have very little experience with Windows platform and I really need a tool to test my application from the UI side. Quick i-net search make me completely baffled, so any help is highly appreciated.

Key requirements:

  1. Can fire user-driven events (such as click on specific place, drag'n'drop, text input)
  2. Can capture screenshots (e.g. on failure)
  3. Can analyze screenshots (sometimes application fires random events and creates pop-ups, needs to intercept and handle such situations). Maybe I can delegate this to some third-party process?
  4. Can create reports and store them in file system.

Application itself is written on C#, but it doesn't matter, right?

Upvotes: 1

Views: 127

Answers (2)

Matten
Matten

Reputation: 17631

If you're developing with WPF (or even WinForms), I'd give Microsoft UI Automation a shot. In conjunction with MSUnit or NUnit it allows easy and programmable UI tests.

Upvotes: 1

Derek
Derek

Reputation: 8628

Nunit is good for functional & Logic testing, its 3rd Party and free to Install. But I dont think it will cover capturing Screenshots etc.

Upvotes: 0

Related Questions