Welcome to mirror list, hosted at ThFree Co, Russian Federation.

standard_spec.rb « login « features « specs « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 254f47cf217bb8434a9f0757957606bce29f0719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  describe 'standard user login', :core do
    it '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::Menu::Main.perform do |menu|
        expect(menu).to have_personal_area
      end
    end
  end
end