当我在@CucumberOptions
中使用选项 format 作为测试报告时,它显示已弃用格式选项如何解决该问题。
@CucumberOptions( monochrome = true, format = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })
答案 0 :(得分:16)
将格式替换为插件
@CucumberOptions( monochrome = true,plugin = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })