@settings
@ows_users
@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
    And I navigate to the settings Manage Users page
    When I filter by the Manage Users table by user account status: <status>
    Then I can see users in the Manage Users table with the <status> status

    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     |
