Run selenium with Ant Run selenium with Ant selenium selenium

Run selenium with Ant


I used the following solution to start the selenium standalone server with Ant:

<target name="selenium">    <exec executable="cmd">        <arg value="/c"/>        <arg value="java -jar ${selenium.standalone} -htmlSuite ${selenium.browser} ${selenium.url} ${selenium.testsuite} ${selenium.result}"/>    </exec></target>