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

module QA
  module Page
    module Project
      module Tag
        class Index < Page::Base
          view 'app/views/projects/tags/index.html.haml' do
            element :new_tag_button
          end

          def click_new_tag_button
            click_element :new_tag_button
          end
        end
      end
    end
  end
end