i need sample case of Login window of USER NAM, PASSWORD
It is very urgnt
Answer Posted / vineelac
A login window consists of username field, password field and a button to login.
TEST CASES FOR USERNAME FIELD:
1. verify for the username by giving valid range of characters.
2. verify for the username by giving invalid range of characters.
3. verify for the username by giving alphabets.
4. verify for the username by giving numeric.
5. verify for the username by giving alphanumeric.
6. verify for the username by giving special characters.
7. verify for the username by giving blank field.
8. verify for the username font size.
9. verify for the username font style.
10.verify for the username alignment(left aligned).
11.verify for the username spell.
TEST CASES FOR PASSWORD FIELD:
same like above
TEST CASES FOR LOGIN BUTTON:
1.verify for the navigation of new page by clicking login button.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is the test plan for ms-word
Hi Team, I have two scenarios ,only one step alone deference betweeen them and preconditions of Test scenarios are defferent . In the above sutuation , are we going divide test cases into two or can we club into them into a single. Regards seshu
How to write test case for this scenario. The First Name data entry field shall be removed from the existing Contact Information screen
Explain the glass box testing?
How to write test case for this scenario. The system shall auto populate the Email Address on the contact screen with the Email Address of the user profile
Explain the ramp testing?
Why is it that the boundary value analysis provides good test cases?
Explain which test cases are written first black boxes or white boxes?
Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?
Explain the state testing?
can one defect be mapped to more than one test script in manual testing
How to write a test case for create folder in the email. create aliases for email adress in the email. thanks Its urgent
What are the different check points for SIT and UAT while testing an Internet Banking application. Consider any one functionality of Internet Banking
You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code. If width > length then biggest_dimension = width else biggest_dimension = length end_if the following has been added to the bottom of the code fragment above. Print 'biggest dimension is ' &biggest_dimensionprint 'width: ' & width print 'length: ' & length how many more test cases are required?
Roads concatenation Problem
Consider we have some GIS (Geo Information System) operating
over some road network. Each road represented as array of
two-dimensional geographical points. Road network is a set
of roads.
System has function called Concatenate(). This function
takes raw road network and should return optimized road
network. Optimization lies in concatenating roads with
matching start or end points, i.e. if road AB end point
matches road BC start point, then optimized network should
contain concatenated road AC. Optimized network shouldn’t
contain two roads which can be concatenated.
Your task is to suggest set of test cases for Concatenate()
function in order to make sure it works correctly.
public interface IPoint
{
double Lat { get; }
double Lon { get; }
}
public Road : List