@ios
Feature: iOS Content Filtering

Background:
    Given a valid test user
    Given I login to the ios app

Scenario: Verifying no songs/artists/products placeholders
    When I filter by country Kosovo
        Then I should see the "No songs" error message
    When I navigate to the products tab
        Then I should see the "No products" error message
    When I navigate to the artists tab
        Then I should see the "No artists" error message
    When I navigate to the songs tab
    And I reset all filters
        Then The songs tab displays with data

Scenario: Verifying Filter by Label
    When I filter by label Test Label
    Then The songs labeled with Test Label are displayed
    Then The products labeled with Test Label are displayed
