summaryrefslogtreecommitdiff
path: root/qa/qa/page/mattermost/main.rb
blob: bc2f9acc7299b9bc6db7ec9b5183c44f04f03233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module QA
  module Page
    module Mattermost
      class Main < Page::Base
        ##
        # TODO, define all selectors required by this page object
        #
        # See gitlab-org/gitlab-qa#154
        #
        view 'app/views/projects/mattermosts/new.html.haml'

        def initialize
          visit(Runtime::Scenario.mattermost_address)
        end
      end
    end
  end
end