How can I invoke an url using ant ? I am using a macro defined as :

<macrodef name="open-url">
  <sequential>
    <invoke description="Login Page" url="someurl" />
  </sequential>
</macrodef>

and in my build file:

<property name="parent-folder" value="../../../.././" />
<import file="open-url.xml"/>
<import file="${parent-folder}/sub-build"/>`    
<target name="test" depends="xyz">`
  <!-- do something-->`
</target>`

in sub-build:

<target name="xyz">
  <ant antfile="open-url.xml" target="open-url"/>
</target>

The build and macro is in the same folder and sub-build is in parent folder.

I am unable to invoke the url.

link|improve this question

50% accept rate
Does checking if a url exist suffice? – FailedDev Sep 29 '11 at 11:19
feedback

1 Answer

You cannot do this with ant. Even BSF supported languages do not work since an ant build.xml file is not a browser window hence functions like XMLHttpRequest() will not work. Other than writing your own custom task I don't see how you could accomplish your task.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.