Test login

  • This is a simple Login page. Students can use this page to practice writing simple positive and negative LogIn tests. Login functionality is something that most of the test automation engineers need to automate.
  • Use next credentials to execute Login:
    Username: student
    Password: Password123
Your username is invalid!

Test case 1: Positive LogIn test
  1. Open page
  2. Type username student into Username field
  3. Type password Password123 into Password field
  4. Push Submit button
  5. Verify new page URL contains practicetestautomation.com/logged-in-successfully/
  6. Verify new page contains expected text ('Congratulations' or 'successfully logged in')
  7. Verify button Log out is displayed on the new page

Test case 2: Negative username test
  1. Open page
  2. Type username incorrectUser into Username field
  3. Type password Password123 into Password field
  4. Push Submit button
  5. Verify error message is displayed
  6. Verify error message text is Your username is invalid!

Test case 3: Negative password test
  1. Open page
  2. Type username student into Username field
  3. Type password incorrectPassword into Password field
  4. Push Submit button
  5. Verify error message is displayed
  6. Verify error message text is Your password is invalid!