summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/login/ldap_spec.rb
blob: ac2bd5a3c39c535daa5c25a1ce159b1f71330f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  feature 'LDAP user login', :ldap do
    scenario 'user logs in using LDAP credentials' do
      Runtime::Browser.visit(:gitlab, Page::Main::Login)
      Page::Main::Login.act { sign_in_using_ldap_credentials }

      # TODO, since `Signed in successfully` message was removed
      # this is the only way to tell if user is signed in correctly.
      #
      Page::Menu::Main.perform do |menu|
        expect(menu).to have_personal_area
      end
    end
  end
end