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

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