TA的每日心情 | 郁闷 2017-1-11 15:48 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
在ant的build文件中启动以及关闭selenium rc sever
通过ant运行selenium的脚本时,每次手动启动selenium server很麻烦。将如下的代码加入ant的build.xml,可以实现每次运行build.xml时,系统会自动启动selenium rc server和关闭selenium rc server.
如果你的firefox运行不需要设置代理:
<target name="start_RC_server" description="Starts a Selenium Server in the background">
<java jar="./seleniumRc/selenium-server-standalone-2.39.0.jar" fork="true" spawn="true" />
<waitfor maxwait="3" maxwaitunit="second">
<socket server="localhost" port="4444"/>
</waitfor>
如果你的firefox运行需要设置代理:
<java jar="./seleniumRc/selenium-server-standalone-2.39.0.jar" fork="true" spawn="true" >
<arg line="-firefoxProfileTemplate ${basedir}/Proxy_SP/" />
</java>
<waitfor maxwait="3" maxwaitunit="second">
<socket server="localhost" port="4444"/>
</waitfor>
</target> |
|