1000+ Manual Testing Interview Questions and Answers Pdf - 3

Question: 11

How to test cookies?

Check cookie expiry

If the applications uses a persistent cookie type, then the cookie must expire as soon as Expiry Date and Time is reached.

If the application uses Session cookie types, Close the application browser; the cookie should expire.

By Disabling cookies check that the application is showing appropriate error messages like “enable cookies in your browser for using complete functionality of this site”.

Check whether sensitive information in the cookie is encrypted or not.

Check whether the application crashes or Data is corrupt by selectively rejecting some cookies.

Make sure that there is no overuse of cookies. Overuse of cookies will annoy users if the browser is prompting for cookies often.

Check cookies are correctly working in multiple browsers.

Question: 12

How do you test a web online application in offline mode?

Simple Configure in the intranet web server and access it. There is no need to have internet for accessing a web application.

Question: 13

What is Web Service Testing?

A Web Service is a software component that is described via WSDL and is capable of being accessed via standard network protocols such as but not limited to SOAP over HTTP.

Question: 14

What is Top Down Integration Testing?

Top down integration testing is an incremental integration testing technique which begins by developing and testing the top level modules first and progressively adding and testing lower level modules one by one. Lower level modules are normally simulated by stubs.

Question: 15

What are different types of Integration Testing?

Component Integration Testing

Component Integration Testing is conducted to test whether the data flow between two or more components is happening properly. For example checking data transfer between Registration and Login components.

System Integration Testing

System Integration testing is conducted to test whether the data flow between two or more systems is happening properly. For example checking whether data transfer between an ecommerce site and third party payment gateways like Paypal or Google checkout is properly happening. Here the Ecommerce Site is one System and Payment Gateway is the other system.

Related Questions