Tools
webtest.txt
Associated article: Testing Web Applications
Tags: Web Development Tools JVM Languages
Published source code accompanying the article by Sean Dawson and Kristin Kerr in which they automate web application testing by integrating JWebUnit into Hippo's existing test framework.
Testing Web Applications
by Sean Dawson and Kristin Kerr
Listing One
getTestContext().setBaseUrl("http://localhost");
beginAt("/main");
setField("username", username);
setField("password", password);
assertSubmitButtonPresent("login");
assertSubmitButtonPresent("reset");
submit(&...


