Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 819 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 819 Bytes

CucumberDemo

Cucumber demo bij Atos test competence

Build status: Circle CI

Benodigdheden voor de demo zijn

  • Java IDE met cucumber plugin.
  • Selenium wordt aan de hand van de pom geimporteerd.
  • Firefox (wordt als webdriver gebruikt)

voorbeeld stukje Gerkin

Scenario Outline: verify whether the check-out date field accepts a later date than check-in date
  Given I am on the adactin site
  When I set the location to "<Location>"
  And I select Hotel "<Hotels>"
  And I select Room type "<Roomtype>"
  Then the search results in an error message
Examples:
  |Location  |Hotels        |Roomtype  |
  |Sydney    |Hotel Creek   |Standard  |
  |London    |Hotel Sunshine|Double    |