summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/repository.rb
blob: 5d73911c697daaeb69a67670ba6a0b546bd2fdb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  module Page
    module Project
      module Settings
        class Repository < Page::Base
          def expand(title)
            page.within('#content-body') do
              find('.qa-expand-deploy-keys').click
            end
          end
        end
      end
    end
  end
end