Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Google 和 stackoverflow 上查看过,但找不到。
我知道可以使用 Ant 脚本启动 selenium 独立服务器。
我现在尝试做半天。
脚本应该做的唯一事情是:
我使用以下解决方案通过 Ant 启动 selenium 独立服务器:
<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>