有没有办法使用Maven创建概述(必须)和详细信息(很高兴)作为项目中所有黄瓜特征文件的可点击文档集?
答案 0 :(得分:0)
不确定“clickable”是什么意思,但是您将从运行Cucumber测试套件生成的报告中获得完整的概述。您有两个内置的报表生成选项,JSON和HTML格式。您可以使用@CucumberOptions
这样配置:
@CucumberOptions(features = {"..."}, format = {
"json:target/cucumber-dev/cucumber.json", "pretty"}, ...)
或
@CucumberOptions(features = {"..."}, format = {
"html:target/cucumber-dev/cucumber.html", "pretty"}, ...)