如何解决@CucumberOptions格式选项的弃用问题?
当我使用选项格式进行测试报告时,它显示格式选项已被弃用,如何解决这个问题。@CucumberOptions
@CucumberOptions( monochrome = true, format = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })
当我使用选项格式进行测试报告时,它显示格式选项已被弃用,如何解决这个问题。@CucumberOptions
@CucumberOptions( monochrome = true, format = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })
用插件替换格式
@CucumberOptions( monochrome = true,plugin = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })