webtest canoo
I downloaded webtest to c:/java/webtest and started the install . Note that manual for webtest. I believe it makes use of clover the coverage tool.
webtest -buildfile installTest.xml
installTest.xml:
..
<target name="checkWebTest">
<echo message="webtest.home is ${webtest.home}"/>
<testSpec name="check calling and parsing a local file">
<config
host=""
port="0"
basepath="/"
summary="false"
saveresponse="false"
haltonfailure="true"
protocol="file"/>
<steps>
<invoke
description="get local file"
url="${basedir}/testfile.html"/>
<verifyTitle
description="check the title is parsed correctly"
text="Test File Title"/>
</steps>
</testSpec>
</target>
testfile.html:
<html><head>
<title>Test File Title</title>
</head>
<body>
empty
</body>
</html>


