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

ci_cd.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: 3547ea7618268ecbb56bce9bc4bd61e3d290d3a6 (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
# frozen_string_literal: true

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

          def self.included(base)
            super

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

          def go_to_pipelines
            within_sidebar do
              click_element(:sidebar_menu_link, menu_item: 'CI/CD')
            end
          end

          def go_to_pipeline_editor
            hover_ci_cd_pipelines do
              within_submenu do
                click_element(:sidebar_menu_item_link, menu_item: 'Editor')
              end
            end
          end

          private

          def hover_ci_cd_pipelines
            within_sidebar do
              find_element(:sidebar_menu_link, menu_item: 'CI/CD').hover

              yield
            end
          end
        end
      end
    end
  end
end

QA::Page::Project::SubMenus::CiCd.prepend_mod_with('Page::Project::SubMenus::CiCd', namespace: QA)