Welcome to mirror list, hosted at ThFree Co, Russian Federation.

operations.rb « sub_menus « project « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 042994062c76c0ce74dd1344b85150b88fb957b9 (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
# frozen_string_literal: true

module QA
  module Page
    module Project
      module SubMenus
        module Operations
          extend QA::Page::PageConcern

          def self.included(base)
            super

            base.class_eval do
              include QA::Page::Project::SubMenus::Common

              view 'app/views/layouts/nav/sidebar/_project.html.haml' do
                element :operations_link
                element :operations_environments_link
                element :operations_metrics_link
                element :operations_incidents_link
              end
            end
          end

          def go_to_operations_environments
            hover_operations do
              within_submenu do
                click_element(:operations_environments_link)
              end
            end
          end

          def go_to_operations_metrics
            hover_operations do
              within_submenu do
                click_element(:operations_metrics_link)
              end
            end
          end

          def go_to_operations_kubernetes
            hover_operations do
              within_submenu do
                click_link('Kubernetes')
              end
            end
          end

          def go_to_operations_incidents
            hover_operations do
              within_submenu do
                click_element(:operations_incidents_link)
              end
            end
          end

          private

          def hover_operations
            within_sidebar do
              scroll_to_element(:operations_link)
              find_element(:operations_link).hover

              yield
            end
          end
        end
      end
    end
  end
end