If you are using JavaScripts or AJAX calls for UI functionality, performing security checks or validations, then give more stress on browser compatibility testing of your web application. Your web site coding should be cross browser platform compatible. Different browsers have different configurations and settings that your web page should be compatible with. Some applications are very dependent on browsers. In my web-testing career, I have experienced this as the most influencing part on web site testing. See which compatibility test is to be executed: Compatibility TestingĬompatibility of your web site is very important testing aspect. Check what happens if user interrupts any transaction in-between? Check what happens if connection to web server is reset in between? 4. If database or web server returns any error message for any query by application server, then application server should catch and display these error messages appropriately to users.
More on database testing could be load on DB, we will address this in web load or performance testing below. Check for data integrity and errors while you edit, delete, modify the forms or do any DB related functionality.Ĭheck if all the database queries are executing correctly, data is retrieved correctly and also updated correctly. Database Testingĭata consistency is very important in web application. Check if site is crawlable to different search engines. Mainly validate the site for HTML syntax errors. If you are optimizing your site for Search engines, then HTML/CSS validation is very important. (I will soon write a separate article on cookie testing.) Validate Your HTML/CSS Check effect on application security by deleting the cookies. If you are testing the session cookies (i.e., cookies expire after the sessions ends), check for login sessions and user stats after session end. Test if the cookies are encrypted before writing to user machine.
Test the application by enabling or disabling the cookies in your browser options. These are basically used to maintain the session mainly login sessions. Cookies TestingĬookies are small files stored on the user machine.
SIEMENS WEB TEST PROJECT MANUAL
All these validations should get checked in manual or automated web testing. There are different field validations like email ids, user financial information validations. So sign up flow should get executed correctly. Each sign up step is different but dependent on other steps. In this project, we have advertiser and affiliate signup steps. Let’s take an example of the search engine project I am currently working on. Options to create forms if any, form delete, view or modify the forms.Wrong inputs to the fields in the forms.First check all the validations on each field.
So what should be checked on these forms? Forms are used to get information from users and to keep interaction with them.