appium

Add features

Cucumber is focused on the business oriented, so we will create features first.

We will create feature "mms.feature" under "features" folder.

Alt text

The content of "mms.feature" should contains following:

Feature: Android MMS
  In order to discard unuseful MMS
  As a user
  I want to draft a MMS and discard it

  Scenario: Discard a MMS
    Given I compose a new MMS
    And I fill "To" with "no one"
    And I fill "Type message" with "empty"
    When I navigate Back
    And I discard the changes
    Then the message should be discarded

Alt text