How to Write Test Cases for Registration Page
Since signup or registration functionality is a fairly common feature in most applications. So, the interviewer can directly ask this question during interviews.here are some possible scenarios
Verify that all the specified fields are present on the registration page.
Check that for better user interface dropdowns, radio buttons and checkboxes, etc fields are displayed wherever possible instead of just text boxes.
Verify that the required/mandatory fields are marked with * against the field.
Verify the page has both submit and cancel/reset buttons at the end.
Verify that whenever possible validation must take place at the client-side.
Check that not filling the mandatory fields and clicking the submit button will lead to an error.
Verify that clicking submits button after entering all the required fields, submits the data to the server.
To read complete post check our website ArtOfTesting or googe "Test Cases for Registration Page by ArtOfTesting"