@ios
Feature: 10 Songs Load Correctly

  Background: User is logged in
    Given a valid test user
    And I login to the ios app

  Scenario: Filter by artist
    Given I can see the catalog screen
    Then I filter by artist The Antlers
    And The total number of displayed songs should exceed 5

  Scenario Outline: Visit multiple sound recording screens
    Given I am on the home tab
    When I select top track <number>
    Then The sound recording screen displays some data

    Examples:
      | number |
      | 1      |
      | 2      |
      | 3      |
      | 4      |
      | 5      |
      | 6      |
      | 7      |
      | 8      |
      | 9      |
      | 10     |
