summaryrefslogtreecommitdiff
path: root/qa/qa/page/component/clone_panel.rb
blob: a0aea6fe44dd2dc5f71b1a0d3aa893f0715c8650 (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
# frozen_string_literal: true

module QA
  module Page
    module Component
      module ClonePanel
        extend QA::Page::PageConcern

        def self.included(base)
          super

          base.view 'app/views/projects/buttons/_clone.html.haml' do
            element :clone_dropdown
            element :clone_options
            element :ssh_clone_url
            element :http_clone_url
          end
        end

        def repository_clone_http_location
          repository_clone_location(:http_clone_url)
        end

        def repository_clone_ssh_location
          repository_clone_location(:ssh_clone_url)
        end

        private

        def repository_clone_location(kind)
          wait_until(reload: false) do
            click_element :clone_dropdown

            within_element :clone_options do
              Git::Location.new(find_element(kind).value)
            end
          end
        end
      end
    end
  end
end