I am using selenium-cucumber framework in our project. So i have feature file in one package, stepdefinition class in one package and runner class in another package. I have some steps in Feature file as given below.
Feature: To test login of FreeCRM
Scenario Outline: login test
Given user in login page
When title of page is freeCRM
Then user enter <username>
Then user enter <password>
Then user click on login button
And user is in home page
Examples:
| username | password |
| test@gmail.io| test123@ |
So in this structure how can i do parameterization through json instead of giving data through example keyword in feature file.