summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/login/standard_spec.rb
blob: ecb3f0cb68c9099ab8ed969cdef9fa7b7f781c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module QA
  feature 'standard root login', :ce, :ee 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