Hello,
I have an existing Ant task for running Selenium tests that uses parallel,
sequential and waitfor. I can encapsulate that task in Gradle but would like
to know if it is easy to rewrite it in Gradle.
Thanks a lot.
---
<target name="run_test" description="Start Selenium ; Run Selenium Tests
; Stop Selenium">
<parallel>
<antcall target="start-selenium-server"></antcall>
<sequential>
<echo taskname="waitfor" message="Wait for proxy server
launch" />
<waitfor maxwait="2" maxwaitunit="minute" checkevery="100">
<http
url="http://localhost:4444/selenium-server/driver/?cmd=testComplete"/>
</waitfor>
<antcall target="testSelenium"></antcall>
<antcall target="stop-selenium-server"></antcall>
</sequential>
</parallel>
</target>
---
--
View this message in context:
http://www.nabble.com/Ant-parallel-sequential-waitfor-tasks-in-Gradle--tp24646650p24646650.html
Sent from the gradle-user mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email