Hi, I am trying to use anteater for verifying various URLs in our application using foreach.
<target name="verify"> <httpRequest group="server" path="${url}" method="GET"> <match> <responseCode value="200"/> </match> </httpRequest> </target> <foreach list="url1,url2,url3,url4" target="verify" param="url"> </foreach> Is there any way that I can specify the list of URLs in a file and read them through one by one in the "for loop"? Thanks, Siva