Saved Bookmarks
| 1. |
What are Step Definitions in the context of Cucumber? |
|
Answer» Step definitions connect Gherkin steps to programming CODE. The MAPPING between each step of the scenario defined in the feature file and a code of the function to be executed is STORED in the steps definition file. A step definition carries out the ACTION that should be performed by the step. So step definitions hard-wire the specification to the implementation. |
|