views:

2445

answers:

7

I've been using WatiN as a testing tool for my current project. Besides the minor bugs with the Test Recorder, I've been able to use it and automate a lot of my tests in conjunction with NUnit. Anyone else out there with experience with different tools they might suggest?

+1  A: 

I have used:

All of them have had their purpose and are very good tools.

Dale Ragan
A: 

WatiN is excellent.

I inherited Mercury Quicktest for functional testing a while back. £30k for the licences and it was truly awful. We never got the same results twice (running on the exact same application). Their support was terrible. It stored tests as collections of encrypted binaries in folders called useful things like Action1 and Action2, so we couldn't source control it properly.

No idea whether HP have improved it since they bought out Mercury, but why bother when WatiN is so good?

Keith
A: 

I can also recommend WatiN. I've been using it exclusively for my web testing. I've even got it to play nice with VB.Net and HP/Mercury Quality Center(TestDirector).

JonnyGold
A: 

The best Open Source automation tool I have used are Selenium IDE and Selenium Remote Control. You can then run the scripts on IE, Firefox in both Mac and Windows.

If you prefer record-play, then download the Firefox add-on Selenium IDE and then record your scripts and run them. You can very easily look at the scripts and figure out how to make minor edits.

If you want more power and flexibility of a full programming language, then consider Selenium Remote Control where I use Java and JUnit to drive the automation scripts. An easy way to started using RC is to use IDE to record your scripts, save them as RC scripts and use JUnit framework to drive your test suite.

For more information, check out:

http://selenium-ide.openqa.org/ http://selenium-rc.openqa.org/

Derek B.
A: 

how can i use watin test recorder since i have problem in the run and compile the error that appears to me is (there were errors copiling your script un expected error creating debug information file access is denied )

what can i do???

A: 

I just wrote a blog article comparing Selenium and Visual Studio Automation Testing (Coded UI) :

Adrian Grigore