Actions

Difference between revisions of "Testing Area/Manual regression testing"

From Mahara Wiki

< Testing Area
Line 6: Line 6:
 
===3.1. Login===
 
===3.1. Login===
 
<div class="mw-collapsible-content">
 
<div class="mw-collapsible-content">
 
+
====Things to test for====
 
 
 
 
 
#'''Visual check'''
 
#'''Visual check'''
 
## Login box correct colour
 
## Login box correct colour
Line 18: Line 16:
  
 
====Manual Test script scenarios====
 
====Manual Test script scenarios====
 +
 
<div class="mw-collapsible mw-collapsed">
 
<div class="mw-collapsible mw-collapsed">
 
:::'''Scenario:''' User invalid login
 
:::'''Scenario:''' User invalid login

Revision as of 09:55, 31 March 2018

Manual Test Cases

Dashboard Manual Testing

3.1. Login

Things to test for

  1. Visual check
    1. Login box correct colour
    2. buttons displayed "Login"
    3. fields displayed "Username" & "Password"
    4. Links displayed "Register" & "Lost username / password"
  2. User invalid login- user should see an error message and will not be loged in
  3. User valid login- user should be logged in and and redirected to the Dashboard page

Manual Test script scenarios

Scenario: User invalid login
Given user is not logged in
And is on the Mahara homepage
When user enters valid username
And user enters invalid password
Then user should see "You have not provided the correct credentials to log in. Please check your username and password are correct." error message
And user should see "There was an error with submitting this form. Please check the marked fields and try again."
And user will not be logged in
Scenario: User valid login
Given user is not logged in
And is on the "Mahara homepage"
When user enters valid username
And user enters valid password
Then user should be on the "Dashboard" page
And user will be logged in
Scenario: "Registration" links to "Registration" page
Given user is not logged in
And is on the "Mahara homepage"
When user clicks "Registration" link
Then user should be on the "Registration" page
Scenario: "Lost username / password" links to "Forgotten your username or password?" page
Given user is not logged in
And is on the "Mahara homepage"
When user clicks the "Lost username / password" link
Then user should be on the "Forgotten your username or password?" page


3.3 Overview