vote up 1 vote down star
2

We've used both JWebUnit and HttpUnit in the past to do functional tests of web applications. Both of them seem to have issues in handling javascript. We are not particularly interested in testing the javascript at this point, but JWebUnit and HttpUnit tests have broken since we added some small Ajax components (Dojo Date / Time pickers for instance) to our pages.

Selenium and Watir do not fit because they essentially drive browsers and we are running these tests from CruiseControl on a box where we are not allowed to install a browser.

flag

4 Answers

vote up 2 vote down check

Canoo's WebTest -- http://webtest.canoo.com/webtest/manual/Downloads.html is pretty good and can handle what you're looking for.

link|flag
AFAIK both Canoo WebTest and JWebTest use HtmlUnit underneath. Both use the Rhino JS engine, too. Somehow I suspect that the results will thus be similar. – Peter Becker Jul 29 at 6:08
vote up 1 vote down

You want HtmlUnit.

It isn't perfect browser emulation (for that you need a browser driver) but it has significant javascript support. Check out the introduction to testing your JavaScript.

link|flag
vote up 0 vote down

Hi,

Go with Canoon. Canoon is built upon HtmlUnit, and was previously built upon HttpUnit.

yc

link|flag
vote up 0 vote down

Celerity is a JRuby library for easy and fast automation of web application testing. It is a wrapper around the HtmlUnit Java library and is aimed at providing the same API and functionality as Watir.

link|flag

Your Answer

Get an OpenID
or

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