@settings
@graphql_distribution
Feature: Status Filter

  @id_d1d10930b5bd08451f82362d6c1203cb8b3783a7db433ec3747dac9daa25c7e8
  Scenario Outline: An admin can filter the user table by each status
    Given a user from <admin_user> for settings
    And I log in to Settings silently
    And I can navigate to Manage Users
    When I filter by <status>
    Then I can see users with the <status> status

    #    2023-04-05 Awal and KNR branded env filters currently broken
    Examples:
      | admin_user | status      |
      | awal_admin | active      |
      | knr_admin  | active      |
      | admin      | active      |
      | admin      | deactivated |
      | admin      | pending     |
      | knr_admin  | deactivated |
      | knr_admin  | pending     |
      | awal_admin | deactivated |
      | awal_admin | pending     |
