使用TestNG运行Selenium webdriver脚本时,未使用mvn clean install命令创建test-outpout文件夹

时间:2016-10-06 05:53:37

标签: maven jenkins selenium-webdriver maven-plugin testng-eclipse

我使用TestNG框架创建了基于maven的Selenium项目。 当我运行命令时: - 命令提示符下的“mvn clean install”然后我的脚本运行正常,但是没有创建“test-output”文件夹,如果我通过Eclipse运行我的脚本,请右键单击testng.xml文件 - 运行并运行TestNGsuite然后创建包含报告的测试输出文件夹。

我添加了针对surefire报告的插件,同样工作正常,但同时我也想从命令提示符运行“mvn clean install”命令时“test-output”文件夹。请建议!!

因为我想在jenkins中配置相同的内容(使用mvn clean install命令),并希望将emailablerepots.html发送给我的前辈。

下面是我的pom.xml: -

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>mavenTestProject</groupId>
  <artifactId>MAVENprojectEmail</artifactId>
  <version>0.0.1-SNAPSHOT</version>



  <build>
        <!-- Source directory configuration -->
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <!-- Following plugin executes the testng tests -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.14.1</version>
                <configuration>
                    <!-- Suite testng xml file to consider for test execution -->
                    <suiteXmlFiles>
                        <suiteXmlFile>testng.xml</suiteXmlFile>
                        <suiteXmlFile>testng.xml</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
            </plugin>
            <!-- Compiler plugin configures the java version to be usedfor compiling 
                the code -->
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>

                </configuration>
            </plugin>
        </plugins>
    </build>


  <dependencies>

     <!--  Selenium Java -->
    <dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-java</artifactId>
    <version>2.53.1</version>
</dependency>


   <dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>6.9.10</version>
</dependency>


  </dependencies>


</project>

1 个答案:

答案 0 :(得分:3)

我遇到了同样的问题。当我仔细搜索时,我发现之前在test-output文件夹中创建的所有报告都在这里: ...\eclipse-workspace\<Project Name>\target\surefire-reports\