Hi,

I've a webtest task that calls another webtest task and I need to pass
some properties to the other task, like:

<webtest>
 <steps>
   ...
   <repeat>
     ...
     <!-- setting myProperty to something -->
     ...
     <antcall target="foobar" inheritAll="true"/>
   </repeat>
 </steps>
</webtest>

and foobar looks like:

<target name="foobar">

  <echo message="${myProperty}" /> <!-- Works! -->
  <webtest>
    <echo message="${myProperty}" /> <!-- Doesn't work! -->
    <steps>
      <echo message="${myProperty}" /> <!-- Doesn't work! -->
    </steps>
  </webtest>
</target>


Is there a possibility to pass properties to the other webtask? I also
tried to set the property explicit, but this doesn't work as well.


Regards,
Matthias
_______________________________________________
WebTest mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/webtest

Reply via email to