I have written a test script. I am using Java, JUnit, and Selenium RC. I want run this script using an ant command.
How do I write an ant task and setup my build.xml file to run this new task?
|
|
|
All a selenium test case is is just an extension of a JUnit test case. So all you need to do is just run a junit test case in ant. The ant manual shows how to do this very clearly. |
|||
|
|
|
Have a look here http://adam.goucher.ca/?p=423 |
|||
|
|
|
I use the OnDemand service from http://saucelabs.com which absolutely rocks. Below is my Ant script for running my JUnit test against SauceLabs Selenium servers. You can skip the
My directory layout is
|
|||
|
|
|
First you have to download ANT from Apache ANT. Then you extract that zip file and place to your drive. You have to set the class path and give the ANT path on classpath. After this, open a |
||||
|
|
|
See, if this helps, Robotil robotil=new Robotil("localhost", 5555); robotil.runAnt("C:\build.xml") |
|||
|
|