zoukankan      html  css  js  c++  java
  • cucumber 使用资料

    1、cucumber reporting

    github:https://github.com/damianszczepanik/cucumber-reporting

    配置:详细参考上述地址描述

     a.添加一个maven依赖项到你的pom

    <dependency>
        <groupId>net.masterthought</groupId>
        <artifactId>cucumber-reporting</artifactId>
        <version>3.9.0</version>
    </dependency>
    b. 插件:
    <plugin>
    <groupId>net.masterthought</groupId>
    <artifactId>maven-cucumber-reporting</artifactId>
    <version>3.9.0</version>
    <executions>
    <execution>
    <id>execution</id>
    <phase>verify</phase>
    <goals>
    <goal>generate</goal>
    </goals>
    <configuration>
    <projectName>collectioncucumbertest</projectName>
    <outputDirectory>${project.build.directory}/cucumber-html-reports</outputDirectory>
    <cucumberOutput>${project.build.directory}/cucumber.json</cucumberOutput>
    <parallelTesting>false</parallelTesting>
    </configuration>
    </execution>
    </executions>
    </plugin>

    cucumber实战:
    http://www.jianshu.com/p/b44245bd9d8b
    Cucumber测试工具学习笔记重要参考:
    http://blog.csdn.net/henni_719/article/details/53606684
    http://blog.csdn.net/henni_719/article/details/53608144
    http://blog.csdn.net/henni_719/article/details/53609423
    cucumber集成学习:
    http://www.cnblogs.com/fanxiaoxiao/category/532322.html
    Jenkins集成Cucumber生成图形化的测试报告
    http://blog.csdn.net/liuchuanhong1/article/details/52593438
    cucumber高阶用法
    http://www.tuicool.com/articles/6jaiUve




  • 相关阅读:
    淘女郎相册爬虫(Python编写)
    在 Linux 命令行中使用和执行 PHP 代码
    PHP PhantomJs中文文档(翻译)
    PHP
    PHP
    PHP
    PHP — 用PHP实现一个双向队列
    Redis — CentOS6.4安装Redis以及安装PHP客户端phpredis
    Linux
    Memcache学习笔记
  • 原文地址:https://www.cnblogs.com/ceshi2016/p/7384267.html
Copyright © 2011-2022 走看看