summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/mattermost/login_spec.rb
blob: 637bbdd643a10fc6b14e0991692d3b6354326f49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module QA
  feature 'logging in to Mattermost', :mattermost do
    scenario 'can use gitlab oauth' do
      Runtime::Browser.visit(:gitlab, Page::Main::Login) do
        Page::Main::Login.act { sign_in_using_credentials }

        Runtime::Browser.visit(:mattermost, Page::Mattermost::Login) do
          Page::Mattermost::Login.act { sign_in_using_oauth }

          Page::Mattermost::Main.perform do |page|
            expect(page).to have_content(/(Welcome to: Mattermost|Logout GitLab Mattermost)/)
          end
        end
      end
    end
  end
end