@android
Feature: Android Content Filtering

Background:
    Given a valid test user
    Given I login to the android 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
    Then The playlisting labeled with Test Label are displayed

@wip
Scenario: Verifying Filter by Country
    When I navigate to the songs tab
        And I filter by country France
    Then The songs popular in France are displayed
