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

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

module QA
  module Page
    module Component
      module ClonePanel
        def self.included(base)
          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(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