summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/wiki/show.rb
blob: f79ad510084ed59f4c7882d314ad0bce005006a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Wiki
        class Show < Page::Base
          include Page::Component::LegacyClonePanel

          view 'app/views/projects/wikis/pages.html.haml' do
            element :clone_repository_link, 'Clone repository' # rubocop:disable QA/ElementWithPattern
          end

          def click_clone_repository
            click_on 'Clone repository'
          end
        end
      end
    end
  end
end