summaryrefslogtreecommitdiff
path: root/spec/support/helpers/features/admin_users_helpers.rb
blob: 99b19eedcffce5428912691647baf8cbf54d0b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Spec
  module Support
    module Helpers
      module Features
        module AdminUsersHelpers
          def click_user_dropdown_toggle(user_id)
            page.within("[data-testid='user-actions-#{user_id}']") do
              find("[data-testid='dropdown-toggle']").click
            end
          end

          def click_action_in_user_dropdown(user_id, action)
            click_user_dropdown_toggle(user_id)

            within find("[data-testid='user-actions-#{user_id}']") do
              find('li button', exact_text: action).click
            end
          end
        end
      end
    end
  end
end