无法解析黄瓜报告中的方法“格式”

时间:2019-04-10 09:48:32

标签: selenium cucumber

enter image description here 尝试运行带有向JSON文件报告的黄瓜方案,但由于某种原因,“格式”无法正常工作。它指出“无法解析方法”格式。我正在学习一个教程,但不明白为什么它不起作用。任何帮助将不胜感激,谢谢

使用selenium / java / intelliJ / testNG

1 个答案:

答案 0 :(得分:4)

自2014年10月30日起,从V. 1.2.0开始不推荐使用使用插件替换 format 作为格式选项。下面的示例-

@RunWith(Cucumber.class)
@CucumberOptions(features = "classpath:features/functional/",
                     glue = {"com.jacksparrow.automation.steps_definitions.functional" },
                   plugin = { "pretty","json:target/cucumber-json/cucumber.json",
                            "junit:target/cucumber-reports/Cucumber.xml", "html:target/cucumber-reports"},
                   tags = { "@BAMS_Submitted_State_Guest_User" },
                   strict = false,
                   dryRun = false,
               monochrome = true)