Hi i have create d a feature file and for that also created a step definition class file but when i am trying to run feature from Cucumber runner class each time it tells:
You can implement missing steps with the snippets below:
I am using Junit for running that file .
My Cucumber Runner class as below:
@RunWith(Cucumber.class)
@CucumberOptions(
features={"Features"},
glue={"src.stepdefinition"},
monochrome=false
)