THIS SPACE IS UNDER CONSTRUCTION

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Code

deleteMessage.feature
#Remove the @ignore-tag(s) of scenarios you want to start testing.

@ignore
Feature: Delete message
  As a user
  I want to delete a message
  So that I can make room for other messages

  @ignore
  Scenario: Delete a message from the inbox
    Given user is logged in
    When user is consulting the INBOX
    And user reads the message to be deleted
    And user deletes the message
    Then the correct message is deleted from the INBOX

  @ignore
  Scenario: Delete a message from the sentbox
    Given user is logged in
    When user is consulting the SENTBOX
    And user reads the message to be deleted
    And user deletes the message
    Then the correct message is deleted from the SENTBOX

  @ignore
  Scenario: Delete a message from the bin inbox
    Given user is logged in
    When user is consulting the BININBOX
    And user reads the message to be deleted
    And user deletes the message
    Then the correct message is deleted from the BININBOX

  @ignore
  Scenario: Delete a message from the bin sent box
    Given user is logged in
    When user is consulting the BINSENTBOX
    And user reads the message to be deleted
    And user deletes the message
    Then the correct message is deleted from the BINSENTBOX
  • No labels