summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/settings/component/ip_limits.rb
blob: 9db2ae8ba585064b9f4b3b4821bbbe5a8cc99d72 (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
# frozen_string_literal: true

module QA
  module Page
    module Admin
      module Settings
        module Component
          class IpLimits < Page::Base
            view 'app/views/admin/application_settings/_ip_limits.html.haml' do
              element :throttle_unauthenticated_checkbox
              element :throttle_authenticated_api_checkbox
              element :throttle_authenticated_web_checkbox
              element :save_changes_button
            end

            def enable_throttles
              check_element :throttle_unauthenticated_checkbox
              check_element :throttle_authenticated_api_checkbox
              check_element :throttle_authenticated_web_checkbox
            end

            def save_settings
              click_element :save_changes_button
            end
          end
        end
      end
    end
  end
end