We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The gherkin syntax supports using an asterisk instead of And (https://cucumber.io/docs/gherkin/reference/).
And
When I use And, the step is parsed as 'keyword': 'And ', 'keywordType': 'Conjunction'.
'keyword': 'And ', 'keywordType': 'Conjunction'
However when I use * the step is parsed as 'keyword': '* ', 'keywordType': 'Unknown'.
*
'keyword': '* ', 'keywordType': 'Unknown'
It would be great if the correct keywordType was set.
The text was updated successfully, but these errors were encountered:
* means that it could be used by any keyword step And means that type of step is substituted from the previous step
So they have different meanings
Sorry, something went wrong.
Ah that makes sense, thank you! I think this issue can be closed then.
This difference isn't clear from the official documentation though.
No branches or pull requests
The gherkin syntax supports using an asterisk instead of
And
(https://cucumber.io/docs/gherkin/reference/).When I use
And
, the step is parsed as'keyword': 'And ', 'keywordType': 'Conjunction'
.However when I use
*
the step is parsed as'keyword': '* ', 'keywordType': 'Unknown'
.It would be great if the correct keywordType was set.
The text was updated successfully, but these errors were encountered: