InterviewSolution
| 1. |
What Are The Text Field Validations ? |
|
Answer» Need to VALIDATE text fields against
From the requirements find Out what the behaviour of the text field in question should be. Things you need to know are: what should HAPPEN if field left blank what special characters are allowedvis it an alpha, numeric or ALPHANUMERIC field etc. Write manual tests for doing what you want. This will create a structure to form the basis of your WR tests. Now create your WR scripts. I suggest that you use data driven tests and use EXCEL spreadsheets for your inputs instead of having user input. For example the following structure will test whether the text field will accept special characters Need to validate text fields against From the requirements find Out what the behaviour of the text field in question should be. Things you need to know are: what should happen if field left blank what special characters are allowedvis it an alpha, numeric or alphanumeric field etc. Write manual tests for doing what you want. This will create a structure to form the basis of your WR tests. Now create your WR scripts. I suggest that you use data driven tests and use Excel spreadsheets for your inputs instead of having user input. For example the following structure will test whether the text field will accept special characters |
|