Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

what is the test plan for ms-word

2445


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

2396


How to write test case for this scenario. The First Name data entry field shall be removed from the existing Contact Information screen

2148


Explain the glass box testing?

1074


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 

2065


Explain the ramp testing?

1119


Why is it that the boundary value analysis provides good test cases?

1214


Explain which test cases are written first black boxes or white boxes?

1047


Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?

1175


Explain the state testing?

1035


can one defect be mapped to more than one test script in manual testing

2453


How to write a test case for create folder in the email. create aliases for email adress in the email. thanks Its urgent

2549


What are the different check points for SIT and UAT while testing an Internet Banking application. Consider any one functionality of Internet Banking

1891


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?

1355


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 { } public RoadNetwork : List { } public RoadNetwork Concatenate(RoadNetwork roads);

2418