summaryrefslogtreecommitdiff
path: root/spec/support/helpers/features/members_helpers.rb
blob: 2d3f0902a3c4b5b53fc62973361ce83c82f44da4 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# frozen_string_literal: true

module Spec
  module Support
    module Helpers
      module Features
        module MembersHelpers
          def members_table
            page.find('[data-testid="members-table"]')
          end

          def all_rows
            page.within(members_table) do
              page.all('tbody > tr')
            end
          end

          def first_row
            all_rows[0]
          end

          def second_row
            all_rows[1]
          end

          def third_row
            all_rows[2]
          end

          def find_row(name)
            page.within(members_table) do
              page.find('tbody > tr', text: name)
            end
          end

          def find_member_row(user)
            find_row(user.name)
          end

          def find_username_row(user)
            find_row(user.username)
          end

          def find_invited_member_row(email)
            find_row(email)
          end

          def find_group_row(group)
            find_row(group.full_name)
          end

          def fill_in_filtered_search(label, with:)
            page.within '[data-testid="members-filtered-search-bar"]' do
              find_field(label).click
              find('input').native.send_keys(with)
              click_button 'Search'
            end
          end

          def user_action_dropdown
            '[data-testid="user-action-dropdown"]'
          end

          def show_actions
            within user_action_dropdown do
              find('button').click
            end
          end

          def show_actions_for_username(user)
            within find_username_row(user) do
              show_actions
            end
          end
        end
      end
    end
  end
end