8

Is there anything like WindowLicker(a GUI test framework) but for .NET's WinForms?

Thanks

devoured elysium
  • 101,373
  • 131
  • 340
  • 557
  • 3
    For those who didn't bother to look at the link: He is asking for a GUI test framework. – awe Jul 22 '10 at 09:27
  • 1
    There are lots of similar questions already that you could look at, like http://stackoverflow.com/questions/2450806/looking-for-some-good-gui-testing-frameworks-gui-automation-test-tools-for-window and http://stackoverflow.com/questions/1465455/testing-automation-tools-for-net and http://stackoverflow.com/questions/58213/can-you-recommend-low-cost-automated-testing-tools-for-a-net-winforms-applicatio and http://stackoverflow.com/questions/2194887/automated-windows-ui-testing-approach – MarkJ Jul 22 '10 at 11:20
  • 1
    In fact I think it's an exact duplicate of http://stackoverflow.com/questions/2450806/looking-for-some-good-gui-testing-frameworks-gui-automation-test-tools-for-window which is also asking for a GUI test automation framework for WinForms – MarkJ Jul 22 '10 at 11:22

4 Answers4

4

White is open source and developed by the guys from ThoughtWorks, pretty good the last time I checked.

If you don't care going commercial, TestComplete from automated QA can also be a good quality/price combination. We use it in our process and gets the job done so far.

David Suarez
  • 1,090
  • 11
  • 12
3

NUnitForms

Lee
  • 142,018
  • 20
  • 234
  • 287
1

As far as I know, you can create GUI tests with Visual Studio 2010 ...

Hinek
  • 9,519
  • 12
  • 52
  • 74
0

You can automate a test a windows process from outside the process with .net 3.0's UI Automation: http://blog.functionalfun.net/2009/06/introduction-to-ui-automation-with.html

It's similar in idea to AutoHotKey which I've also used for UI testing.

Matthew Lock
  • 13,144
  • 12
  • 92
  • 130