0
在下面的代碼中,我使用@ cucumber.options.But它說它已被棄用。如何解決不推薦使用的@CucumberOptions?
所以我試圖使用@ cucumberoptions需要導入「cucumber.api.CucumberOptions」。 但是,當我檢查我的maven依賴項時,cucumber.api不包含cucumberoptions。 而我正在爲我的導入「import cucumber.api.CucumberOptions;」獲取一條紅線
我的目標是創建一個好的報告並設定其路徑。這裏How to resolve the deprecation of format option in @CucumberOptions?但找不到答案我找 -
我能找到一個相關的問題。 如果你們中的任何人都能找到解決方案,我將非常感激。
我的代碼如下: -
package featurefiles;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.*;
@RunWith(Cucumber.class)
@CucumberOptions(strict = false, features = "features", format = { "pretty",
"html:target/site/cucumber-pretty",
"json:target/cucumber.json" }, tags = { "[email protected]" })
public class CucumberTestRunner {
}