如何在新版本的黄瓜中将@cucumberoptions 写为格式="html:folderpath"?
How to write @cucumberoptions as format="html:folderpath" in new version of cucumber?
新版本有变化,不允许使用 format={},表示已弃用。任何人都可以帮助如何在新版本中编写相同的内容在提到的位置生成 HTML 报告。
format
已替换为 plugin
因此您可以使用:
@CucumberOptions(plugin = {"progress", "html:target/cucumber-report.html"})
新版本有变化,不允许使用 format={},表示已弃用。任何人都可以帮助如何在新版本中编写相同的内容在提到的位置生成 HTML 报告。
format
已替换为 plugin
因此您可以使用:
@CucumberOptions(plugin = {"progress", "html:target/cucumber-report.html"})