Hi,
Can any one tell me how to pass the storeXPath values to next
target/webtest.
Thanks in advance
Regards,
Srini
here is the structure of my project (please ignore any typos), but its not
working.
<project>
<target name="all">
<antcall target="test1"/>
<antcall target="test2"/>
</target>
<target name="test1">
<webtest>
<storeXPath ...... property="accID"/>
</webtest>
<target>
<target name="test2">
<webtest>
<setInputField name="searchDataBean.searchString" value="#{accID}"/>
</webtest>
</target>
</project>