E2E testing with Protractor & Cucumber Js
Cucumber Java post can be found here. Guest post by Ram Pasala Cucumber framework is meant for BDD acceptance testing which are basically scenario validations of an application which helps programmers to test and what not to test in plain understandable language(Gherkin).
1 2 3 4 5 |
Scenario: Google Protractor Given I am on google page When I type "protractor" Then I click search button Then I clear search textbox" |
Now let us see how the above scenario could be converted into … Read moreE2E testing with Protractor & Cucumber Js