We reached a new milestone few days ago. It was about 2 years ago that we cross 1 million page views. We crossed a new mile stone few days ago. seleniumtests.com crossed 2 million page views days ago. Though addition on a million page views in not spectacular in span on 2 years but probably an indicator of popularity of a private blog. Last but not the least, seleniumtests.com would not have reached this milestone with out all of you. A big thanks to all of you :-)
Ant is a build tool which could be used to have your tests running either from command line or from Hudson CI tool. There is detailed documentation available for ant here but probably you need to know only a little part of it for you selenium tests. The essentials which are needed to know are: Project Target (ant execution point and collection of tasks) Tasks (could be as simple as compilation) And there would usually be following targets for Selenium tools - setClassPath - so that ant knows where you jar files are loadTestNG - so that you could use testng task in ant and use it to execute testng tests from ant init - created the build file clean - delete the build file compile - compiles the selenium tests run - executes the selenium tests Here is my project set up for ant -