蚂蚁Junit Selenium不会在Jenkins中运行



我有使用硒来测试Web服务器的junit测试。当我从命令行使用 ant 运行测试时,一切正常,浏览器打开,测试按计划进行。浏览器打开,我可以看到正在运行的测试。最近我尝试将自动测试添加为在 jenkins 上运行的 Ci 循环的一部分。我将其作为 ant 构建命令运行。我可以看到 ant 正在正确执行(构建了测试类,我可以看到从测试到控制台的输出),但浏览器窗口从未打开,测试因此失败。这是我的蚂蚁文件

<?xml version="1.0"?> 
<project name="JUNIT" default="main" basedir="../../project"         xmlns:artifact="antlib:org.apache.maven.artifact.ant"> 
<!-- Sets variables which can later be used. --> 
<!-- The value of a property is accessed via ${} --> 
    <property name="api.dir" location="src/java" />     
    <property name="build.api.dir" location="target/classes" />
    <property name="test.dir" location="src/test/java" />   
    <property name="build.test.dir" location="target" /> 
    <!-- Variables used for JUnit testin --> 
    <property name="test.report.dir" location="testreport" /> 
    <!-- Define the classpath which includes the junit.jar and the classes after compiling--> 
    <path id="api.class.path"> 
        <pathelement location="${build.api.dir}" />         
    </path>
     <artifact:dependencies cacheDependencyRefs="true" pathId="pomdeps.path">
      <pom file="pom.xml"/>
    </artifact:dependencies>
    <target name="clean">       
        <delete dir="${test.report.dir}" /> 
        <delete dir="${build.api.dir}" />
        <delete dir="${build.test.dir}" />
    </target> <!-- Creates the build, docs and dist directory--> 
    <target name="makedir"> 
        <echo message="Make dir"/>      
        <mkdir dir="${build.test.dir}" /> 
        <mkdir dir="${build.api.dir}" /> 
        <mkdir dir="${test.report.dir}" /> 
    </target> <!-- Compiles the java code (including the usage of library for JUnit --> 
    <target name="compile" depends="clean, makedir"> 
        <echo message="Compile"/>   
        <javac srcdir="${api.dir}" destdir="${build.api.dir}" includeantruntime="false">
            <!--classpath refid="junit.class.path" />           
            <classpath refid="libs.class.path" /-->
            <classpath refid="pomdeps.path" />
        </javac>        
        <javac srcdir="${test.dir}" destdir="${build.test.dir}" includeantruntime="false">
            <!--classpath refid="junit.class.path" /--> 
            <classpath refid="api.class.path" /> 
            <classpath refid="pomdeps.path" />
        </javac> 
    </target> 
    <!-- Run the JUnit Tests --> <!-- Output is XML, could also be plain--> 
    <echo message="Classes folder ${build.test.dir}"/>
    <target name="junit" depends="compile" > 
        <echo message="junit"/>
        <junit printsummary="on" fork="false" haltonfailure="no" showoutput="true"> 
        <classpath refid="pomdeps.path" /> 
            <classpath>                 
                <pathelement location="${build.test.dir}"/>     
                <pathelement location="${build.api.dir}"/>              
            </classpath> 
            <formatter usefile="false" type="plain"/>
            <batchtest fork="no" todir="${test.report.dir}">
            <fileset dir="${test.dir}">
                <include name="**/*Test*.java"/>
            </fileset>
            </batchtest>
        </junit> 
    </target> 
    <target name="main" depends="compile, junit"> 
        <description>Main target</description> 
    </target> 
</project>

詹金斯是 1.591 我使用默认参数安装它作为从他们的站点下载的 Windows 安装。会不会是詹金斯出了什么问题?我错过了什么吗?

正如我之前提到的,问题在于缺乏 Jenkins 服务器的 UI 权限。1.将 Jenkins 配置为作为服务运行,并使其使用真实用户名登录2.确保运行 Jenkins 的 Windows 主机在重新启动后自动登录。

相关内容

  • 没有找到相关文章

最新更新