如何在新版本的黄瓜中将@cucumberoptions编写为format =“ html:folderpath”?

时间:2018-08-30 09:42:05

标签: cucumber cucumber-jvm cucumber-java

已弃用新版本,其中不允许使用format = {}。谁能帮助您在新版本中编写相同的代码,并在上述位置生成HTML报告。

1 个答案:

答案 0 :(得分:1)

format已替换为plugin,因此您可以使用:

@CucumberOptions(plugin = {"progress", "html:target/cucumber-report.html"})