cucumber 使用资料
Posted 梦想空间
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于cucumber 使用资料的主要内容,如果未能解决你的问题,请参考以下文章
可以在Cucumber(java)中创建“Master Step”吗?