Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/ant/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/powerbi/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
无法从ANT build.xml执行testNG xml_Ant_Selenium Webdriver - Fatal编程技术网

无法从ANT build.xml执行testNG xml

无法从ANT build.xml执行testNG xml,ant,selenium-webdriver,Ant,Selenium Webdriver,我正在使用below build.xml执行testng xml。当我只需要Selenium独立jar时,这个build.xml对我来说工作得很好 <project name="TestNGTest" default="test" basedir="."> <!-- Define <testng> task --> <taskdef name="testng" classname="org.testng.TestNGAntTask"&

我正在使用below build.xml执行testng xml。当我只需要Selenium独立jar时,这个build.xml对我来说工作得很好

<project name="TestNGTest" default="test" basedir=".">

    <!-- Define <testng> task -->

    <taskdef name="testng" classname="org.testng.TestNGAntTask">
        <classpath>
            <pathelement location="SupportFiles/JarFiles/commons-cli-1.0.jar" />
            <pathelement location="SupportFiles/JarFiles/commons-logging.jar" />
            <pathelement location="SupportFiles/JarFiles/crimson.jar" />
            <pathelement location="SupportFiles/JarFiles/hsqldb.jar" />
            <pathelement location="SupportFiles/JarFiles/jaxp.jar" />
            <pathelement location="SupportFiles/JarFiles/jconfig.jar" />
            <pathelement location="SupportFiles/JarFiles/jmxri.jar" />
            <pathelement location="SupportFiles/JarFiles/jxl.jar" />
            <pathelement location="SupportFiles/JarFiles/mysql-connector-java-5.1.6-bin.jar" />
            <pathelement location="SupportFiles/JarFiles/selenium-server-standalone-2.45.0.jar" />
            <pathelement location="SupportFiles/JarFiles/xlSQL_Y8.jar" />
        </classpath>
    </taskdef>

    <property name="testdir" location="bin" />
    <property name="srcdir" location="src" />
    <property name="libdir" location="SupportFiles" />
    <property name="subdir" location="JarFiles" />
    <property name="full-compile" value="true" />

    <path id="classpath.base" />
    <path id="classpath.test">
        <!--pathelement location="${libdir}/testng-6.8.5.jar" /-->

        <!--pathelement location="${subdir}/SeleniumTestNG.jar" /-->
        <pathelement location="${subdir}/selenium-server-standalone-2.45.0.jar" />
        <pathelement location="${subdir}/commons-cli-1.0.jar" />
        <pathelement location="${subdir}/commons-logging.jar" />
        <pathelement location="${subdir}/crimson.jar" />
        <pathelement location="${subdir}/hsqldb.jar" />
        <pathelement location="${subdir}/jaxp.jar" />
        <pathelement location="${subdir}/jconfig.jar" />
        <pathelement location="${subdir}/jmxri.jar" />
        <pathelement location="${subdir}/jxl.jar" />
        <pathelement location="${subdir}/mysql-connector-java-5.1.6-bin.jar" />
        <pathelement location="${subdir}/xlSQL_Y8.jar" />

        <!-- pathelement location="${libdir}/jxl-2.6.12.jar"/-->
        <pathelement location="${testdir}" />
        <fileset dir="${testdir}" includes="*.jar" />


        <fileset dir="${libdir}">
            <include name="**/*.jar" />
        </fileset>

        <pathelement location="${testdir}" />
        <pathelement location="${srcdir}" />

        <path refid="classpath.base" />
    </path>

    <target name="clean">
        <delete verbose="${full-compile}">
            <fileset dir="${testdir}" includes="**/*.class" />
        </delete>
    </target>

    <target name="compile" depends="clean">
        <javac srcdir="${srcdir}" destdir="${testdir}" verbose="${full-compile}" fork="yes" includeantruntime="false">
            <classpath refid="classpath.test" />
        </javac>
    </target>

    <target name="test" depends="compile">
        <testng outputdir="C:\Users\A592013\.jenkins\jobs\Jenkins - Selenium\workspace\test-output" classpathref="classpath.test">
            <xmlfileset dir="." includes="TestNG_Sanity.xml" />
        </testng>
    </target>

</project>
谁能告诉我build.xml有什么问题吗 非常感谢你在这方面的帮助。仅供参考。我在XLSQL 8的帮助下读取excel数据,因此需要所有这些JAR来执行此操作。 非常感谢你在这方面的帮助

                          ^

有什么帮助吗?谢谢,我在这方面没有得到任何帮助。
                          ^