How to resolve deprecated @CucumberOptions?

Sapna picture Sapna · Dec 3, 2015 · Viewed 10k times · Source

In the following code i was using @cucumber.options.But it says it is deprecated.

So i am trying to use @cucumberoptions which requires an import of "cucumber.api.CucumberOptions". But when i checked in my maven dependencies , cucumber.api does not contain cucumberoptions. And i am getting a red line for my import "import cucumber.api.CucumberOptions;"

My aim is to create a good report and set its path .

I could find a related question - How to resolve the deprecation of format option in @CucumberOptions? here but could not find an answer i am looking for. I would really appreciate if any of you could find a resolution to this .

My Code is as follows:-

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 = { "~@ignore" })
public class CucumberTestRunner {
}

Answer

Abhishek picture Abhishek · Aug 22, 2019

Instead of :

import cucumber.api.CucumberOptions;

Use:

import io.cucumber.junit.CucumberOptions;