summaryrefslogtreecommitdiff
path: root/qa/qa/page/label/index.rb
blob: 323acd57743c0b7ba88f3b4de385c0e8384a8ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  module Page
    module Label
      class Index < Page::Base
        view 'app/views/projects/labels/index.html.haml' do
          element :label_create_new
        end

        def go_to_new_label
          click_element :label_create_new
        end
      end
    end
  end
end