In my cucumber feature file, Ihave some thing like this:
Scenario Outline: Hi Hello
Given I open
When I fill details <name> <Age> <DON> <Place>
Then Click enter
Then I verify
Examples:
|Name|Age|BOB |Place|
|JOHN|20 |2000| OH |
Above Examples values are used in When step , I'm trying to verify all details in Last step "Then I verify" , where actually i'm not passing any value to that step .
Question : Do we have any way to read Examples details from Last Then method(Step)
Is there a way to read Examples Key value from Step "Then I verify"