summaryrefslogtreecommitdiff
path: root/qa/qa/page/main/login.rb
blob: 8b0111a78a2089f4d27eb0461de14966fdc070e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module QA
  module Page
    module Main
      class Login < Page::Base
        def sign_in_using_credentials
          if page.has_content?('Change your password')
            fill_in :user_password, with: Runtime::User.password
            fill_in :user_password_confirmation, with: Runtime::User.password
            click_button 'Change your password'
          end

          fill_in :user_login, with: Runtime::User.name
          fill_in :user_password, with: Runtime::User.password
          click_button 'Sign in'
        end
      end
    end
  end
end