Featured
-
No Featured Found!
Tags
Step Definitions in Cucumber
Cucumber is a command-line tool that reads specifications from plain-language text files but cucumber itself does not have any idea as how to execute the scenario steps. Cucumber needs step definition to convert Gherkin step into some desired act...
Gherkin keywords
Gherkin is a Business Readable language that Cucumber understands and describes the application flow. In cucumber each line should start with a Gherkin keyword. Gherkin provides the following keywords:
Feature
Scenario
Scenario...
gherkin.parser.ParseError in cucumber feature file.
I created the below scenario in a cucumber feature file and when I executed the scenario then I got gherkin.parser.ParseError
Scenario : The user should be able to login for correct credentials
Given I am at the Home page
...