Skip to content

This code base shows how to utilize minimalist BDD-style Gherkin files for test automation.

Notifications You must be signed in to change notification settings

angiejones/bdd-with-test-automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Utilizing Good Gherkin for Test Automation

This code base shows how to utilize minimalist BDD-style Gherkin files for test automation. As a good practice, the implementation details are not specified in the Gherkin file, but instead are pushed down to the code level. This allows automation engineers to be free to implement the scenarios as they see fit.

Given this scenario, the tests are automated against the UI, API, and even visual testing, even though the Gherkin steps do not explicitly state this.

Scenario: Withdraw from account when funds are available
    Given a customer has an account
    And the account balance is 100.00 dollars
    When the customer withdraws 10.00 dollars
    Then the account balance should be 90.00 dollars
    And a new transaction should be recorded

Tools used: Java, Selenium WebDriver, Rest-Assured, Cucumber, Applitools

Blog Post: http://angiejones.tech/writing-good-gherkin-enables-good-test-automation/

Video demonstration of this code base can be found as part of the 2019 Automation Guild Conference.

About

This code base shows how to utilize minimalist BDD-style Gherkin files for test automation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published