Sapna
Sapna

Reputation: 411

How to resolve deprecated @CucumberOptions?

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 {
}

Upvotes: 5

Views: 18180

Answers (3)

Shilan
Shilan

Reputation: 833

Instead of the legacy classes import them from io package:

import cucumber.api.CucumberOptions; >> import io.cucumber.junit.CucumberOptions; and import cucumber.api.junit.Cucumber >> import io.cucumber.junit.Cucumber;

Upvotes: 3

Abhishek
Abhishek

Reputation: 153

Instead of :

import cucumber.api.CucumberOptions;

Use:

import io.cucumber.junit.CucumberOptions;

Upvotes: 12

Sapna
Sapna

Reputation: 411

I found answer to this .

{import cucumber.api.CucumberOptions;}

was not needed .

Thanks.

Upvotes: 2

Related Questions