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

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