Hi
I have some code which instruments the JSF libraries / Rich Faces
libraries and produces an xml representation of the web pages.
I have a small xsl script which transforms the xml into a set of webtests
.
The application requires a login which is kind of static . So I organized
my allTests.xml to look like :
<target name="test">
<ant antfile="login.xml" />
<ant antfile="test1.xml" />
and so on . Each of the test1.xml contains 1 test .
When I run the webtests I find that login.xml is succesfully completed
but on trying to execute test1.xml it finds there is no previous response .
But if I have the test1.xml as a different target in the login.xml
things are working .
Is it possible to have the <ant antfile> work and get the previous
responses . If so how .
Thanks
Regards
Hari