Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Feature

User story

As a user
I want to see my Out-of-Office list
In order to see all my planned absences

Use caseUC-407: OoO list
Expected resultCheck the response of the webservice call.
Actual resultCheck the front-end of the application under test.
Test pass conditions

The following values need to be verified for every OoO:

  • OoO ID
  • Start date
  • End date

If there is at least one substitute:

  • Substitute id
  • Substitute type
  • Substitute quality

Code

Code Block
languagegherkin
titleooOList.feature
#Remove the @ignore-tag(s) of scenarios you want to start testing.

@ignore
Feature: Out-of-Office List
  As a user
  I want to see my Out-of-Office list
  SoIn thatorder I canto see all my planned absences

  @ignore
  Scenario: Look atVerify the OoO list
    Given user is logged in
    When user is on the OoO list page
    Then OoO list is shown

...