summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/wiki/show.rb
blob: 044e514bab3363a0013ba61924da28a0ebd56eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module QA
  module Page
    module Project
      module Wiki
        class Show < Page::Base
          include Page::Shared::ClonePanel

          view 'app/views/projects/wikis/pages.html.haml' do
            element :clone_repository_link, 'Clone repository'
          end

          def go_to_clone_repository
            click_on 'Clone repository'
          end
        end
      end
    end
  end
end