PDA

View Full Version : How do you test the login feature of a web application?



addisoncave
12-26-2016, 08:24 AM
To check any web application, I really don't now what should i do or not to do ?

ORLOVA
06-26-2017, 06:39 AM
Possible answers to this testing interview question can be:

Sign in with valid login, Close browser and reopen and see whether you are still logged in or not.

Session management is important – how do we keep track of logged in users, is it via cookies or web sessions?

Sign in, then logout and then go back to the login page to see if you are truly logged out.

Login, then go back to the same page, do you see the login screen again?

Sign in from one browser, then open another browser to see if you need to sign in again?

Login, change password, and then logout, then see if you can login again with the old password.

Dam Ponting
09-15-2017, 07:13 AM
When we test a web application there are lots of areas where we need to focus.Login feature of web application is very important to test. A. Login with valid credentials : 1.Sign in with valid login, Close browser and reopen and see whether you are still logged in or not.

lishmalinyjames
06-23-2021, 05:12 PM
Verify the login page by pressing 'Back button' of the browser. It should not allow you to enter into the system once you log out. Verify the timeout functionality of the login session. Verify if a user should not be allowed to log in with different credentials from the same browser at the same time.