What are the Lexing Errors in Cucumber? -
What are the Lexing Errors in Cucumber? -
i trying run simple feature file getting exception : exception in thread "main" cucumber.runtime.cucumberexception: error parsing feature file.
which caused by: gherkin.lexer.lexingerror: lexing error
i trying parametrized when statement , got exception:
scenario: login gmail given user on gmail login page when user enters <username> , <pwd> , clicks on login button user should redirect home page scenario outline(tried examples didn't worked): |username | pwd | |ravivani10 | abc |
the right syntax scenario outline start keyword scenario outline: , list examples examples: keyword.
scenario outline: login gmail given user on gmail login page when user enters <username> , <pwd> , clicks on login button user should redirect home page examples: | username | pwd | | ravivani10 | abc |
cucumber
Comments
Post a Comment