Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.rb « mattermost « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e636d7676f4518635e00455a4299eb2979138d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
module QA
  module Page
    module Mattermost
      class Main < Page::Base
        def initialize
          visit(Runtime::Scenario.mattermost)
        end
      end
    end
  end
end