指定单个jar的类路径

时间:2011-06-24 06:00:00

标签: java ant selenium-grid

我正在尝试设置Selenium Grid,而不是使用Selenium Grid下载的ant配置,我继续使用我的ant配置。

对于不了解Selenium Gird的蚂蚁用户 - 它是一个java lib,它允许UI测试分布在一个“yml”文件中指定的不同系统上。在这里我可以启动一台集线器机器,然后可以在不同的从机上控制浏览器。

我正在使用的Ant配置 -

<target name="setClassPath">
    <path id="classpath_jars">
        <fileset dir="${lib.dir}" includes="*.jar"/>
    </path>
    <pathconvert pathsep=":" property="test.classpath"
        refid="classpath_jars" />
</target>

<target name="launch-hub" description="Launch Selenium Hub" depends="setClassPath">
    <java classname="com.thoughtworks.selenium.grid.hub.HubServer" 
        classpathref="classpath_jars" 
        fork="true" 
        failonerror="true">

        <sysproperty key="http.proxyHost" value="${http.proxyHost}" />
        <sysproperty key="http.proxyPort" value="${http.proxyPort}" />
        <sysproperty key="https.proxyHost" value="${https.proxyHost}" />
        <sysproperty key="https.proxyPort" value="${https.proxyPort}" />

    </java>
 </target>

现在使用此配置时,我的集线器始终以“ylen”文件开头,该文件位于“selenium-grid-hub-standalone-1.0.8.jar”中,而不是考虑我在我上面定义的“yml”文件项目根。

在此之后,我更改了以下的ant配置,这在Selenium Grid分发中可用 -

<path id="hub.classpath">
    <pathelement path="${basedir}/"/>
    <fileset dir="${basedir}/lib">
        <include name="selenium-grid-hub-standalone-1.0.8.jar"/>
    </fileset>
</path>

<target name="launch-hub" description="Launch Selenium Hub">
    <java classname="com.thoughtworks.selenium.grid.hub.HubServer"
          classpathref="hub.classpath"
          fork="true"
          failonerror="true" >

        <sysproperty key="http.proxyHost" value="${http.proxyHost}"/>
        <sysproperty key="http.proxyPort" value="${http.proxyPort}"/>
        <sysproperty key="https.proxyHost" value="${https.proxyHost}"/>
        <sysproperty key="https.proxyPort" value="${https.proxyPort}"/>
    </java>
</target>

现在,当我启动集线器时,它会考虑在我的项目根目录中定义的“yml”文件,而不是“selenium-grid-hub-standalone-1.0.8.jar”文件中提供的文件。

我不是蚂蚁爱好者,但我发现两种配置几乎相似,其中第一种配置依赖于目标,而其他配置使用“pathid”。谁可以对此有所了解?

1 个答案:

答案 0 :(得分:0)

我认为不同之处在于第二个示例中的类路径包含项目根目录:

<pathelement path="${basedir}/"/>

而第一个没有。