import cucumber.api.java.en.When;  : After importing error message The type When is depreciated .This occur for all the annotataion & in Test Runner file its shows"The type CucumberOptions is deprecated".


我已经用POM安装了Java 12

cucumber-java :4.7.2
cucumber-junit: 5.5.1
junit:4.12



解决查询的任何建议。

最佳答案

代替
 import cucumber.api.CucumberOptions;

使用此import io.cucumber.junit.CucumberOptions;

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

09-05 00:40