summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/login/standard_spec.rb
blob: ba19ce17ee51fe53098f1c5c4bd8008f4c1f8c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module QA
  feature 'standard root login', :core do
    scenario 'user logs in using credentials' do
      Page::Main::Entry.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