如何通过命令提示符和使用 Maven 的 jenkins 运行单个黄瓜功能文件?

新手上路,请多包涵

我对 Cucumber / Maven 有点陌生,所以需要帮助来运行测试用例。我使用 Cucumber 和 Selenium 在 eclipse 中开发了一个自动化套件。要运行特定的功能文件/Junit 运行器类,我右键单击 Eclipse 中的文件并运行它。

但是我如何通过命令提示符或 Jenkins 运行它,给出特定的命令来运行 2-3 个特征文件(或)50 个特征文件或 JUnit 类中的 2-3 个 Junit 运行器类?

下面是我在 Eclipse 中构建的包资源管理器。

在此处输入图像描述

下面是 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>com.perspecsys</groupId>
    <artifactId>salesforce</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>salesforce</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-java</artifactId>
            <version>1.1.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-picocontainer</artifactId>
            <version>1.1.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-junit</artifactId>
            <version>1.1.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.48.2</version>
        </dependency>

    </dependencies>
</project>

原文由 Ronnie 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 532
1 个回答

您可以使用 cucumber.options 运行单个功能文件,这将覆盖您在 @CucumberOptions 注释中的所有选项:

 mvn test -Dcucumber.options="src/test/features/com/perspecsys/salesforce/featurefiles/Account.feature"

编辑(2021 年 6 月):后续版本删除了 cucumber.options 构造并替换了它。现在实现相同结果的一种方法是使用标签。在功能文件顶部放置一个标签(示例 @feature_file_name ),然后运行以下命令:

 mvn test -Dcucumber.filter.tags='@feature_file_name'

原文由 Sébastien Le Callonnec 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题