Versions Compared

Key

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

Code

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

@ignore
Feature: Send message
  As a user
  I want to send a message
  So that I am able to send data to another user

  @ignore
  Scenario: Send a message
    Given user is logged in
    When user is on the send message page
    And user sends a basic message
    Then message is sent correctly

  @ignore
  Scenario: Send an encrypted message
    Given user is logged in
    When user is on the send message page
    And user sends an encrypted message
    Then message is sent correctly

  @ignore
  Scenario: Send a message with an attachment
    Given user is logged in
    When user is on the send message page
    And user sends a message with an attachment
    Then message is sent correctly

  @ignore
  Scenario: Send an encrypted message with an attachment
    Given user is logged in
    When user is on the send message page
    And user sends an encrypted message with an attachment
    Then message is sent correctly

...