Manual

manual software testing

Generating Test Data

Before we start talking about Test Data Generation, we should know what Test Data is & why it is important before test execution. What is Test Data? Test data is any kind of input to application or any file which is loaded by application or any entries which can be read from Database Tables. Some data may be used in positive testing to verify that a given set of input to a given set of function generates an expected result. Some data may be used in negative testing to check the ability of application to handle exceptional or unexpected input. [...]

Read more...

Be the first to comment - What do you think?
Posted by Brijal - October 17, 2011 at 10:43 pm

Categories: Manual   Tags: ,

Manual Testing VS Automated Testing

This is the common question that when we should do manual testing & when we should do automation testing. Following guidelines may help you to find out the answer. It becomes clear that to evaluate the business benefit of manual testing versus automated testing requires careful consideration of: The effort required to produce written test cases for manual execution The effort required to produce test cases for test automation The probably number of times those test cases are executed for this test cycle The likelihood of reusing automated test cases for future test cycles In general terms it makes sense [...]

Read more...

1 comment - What do you think?
Posted by Brijal - October 13, 2011 at 3:31 pm

Categories: Automation, Manual   Tags: , , , ,

What is RSS Part I

What problem does RSS solve? Most people are interested in many websites whose content changes on an unpredictable schedule. Examples of such websites are news sites, community and religious organization information pages, product information pages, medical websites, and weblogs. Repeatedly checking each website to see if there is any new content can be very tedious. Email notification of changes was an early solution to this problem. Unfortunately, when you receive email notifications from multiple websites they are usually disorganized and can get overwhelming, and are often mistaken for spam.

Read more...

1 comment - What do you think?
Posted by Brijal - May 1, 2010 at 8:06 am

Categories: Concept, Manual   Tags: ,

What is RSS Part II

How do I find out if a website has an RSS feed? The special XML-format file that makes up an RSS feed is usually created in one of a variety of ways. It is getting more and more common for websites to have RSS feeds. They usually indicate the existence of the feed on the home page or main news page with a link to “RSS”, or sometimes by displaying an orange button with the letters “XML” or “RSS”. Once you know the URL of an RSS feed, you can provide that address to an RSS aggregator program and have [...]

Read more...

3 comments - What do you think?
Posted by Brijal - May 1, 2010 at 8:04 am

Categories: Concept, Manual   Tags:

What is robots.txt

Web site owners use the /robots.txt file to give instructions about their site to web robots; this is called The Robots Exclusion Protocol. It works likes this: a robot wants to vists a Web site URL, say http://www.example.com/welcome.html. Before it does so, it firsts checks for http://www.example.com/robots.txt, and finds: User-agent: * Disallow: / The “User-agent: *” means this section applies to all robots. The “Disallow: /” tells the robot that it should not visit any pages on the site.

Read more...

Be the first to comment - What do you think?
Posted by Ashish - March 26, 2010 at 5:34 am

Categories: Concept, Manual   Tags:

robots.txt Rules

The “/robots.txt” file is a text file, with one or more records. Usually contains a single record looking like this: User-agent: * Disallow: /cgi-bin/ Disallow: /tmp/ Disallow: /~joe/ In this example, three directories are excluded. Note that you need a separate “Disallow” line for every URL prefix you want to exclude — you cannot say “Disallow: /cgi-bin/ /tmp/” on a single line. Also, you may not have blank lines in a record, as they are used to delimit multiple records.

Read more...

1 comment - What do you think?
Posted by Ashish - March 26, 2010 at 5:30 am

Categories: Concept, Manual   Tags:

PayPal Integration Testing

What is PayPal PayPal is an e-commerce business allowing payments and money transfers to be made through the Internet. PayPal serves as an electronic alternative to traditional paper methods such as checks and money orders. A PayPal account can be funded with an electronic debit from a bank account or by a credit card. The recipient of a PayPal transfer can either request a check from PayPal, establish their own PayPal deposit account or request a transfer to their bank account. PayPal is an example of a payment intermediary service that facilitates worldwide e-commerce.

Read more...

3 comments - What do you think?
Posted by Ashish - March 25, 2010 at 6:30 pm

Categories: Concept, Internet Security, Manual   Tags: , , ,

Website Cookie Testing Part I

What is Cookie? Cookie is small information stored in text file on user’s hard drive by web server. This information is later used by web browser to retrieve information from that machine. Generally cookie contains personalized user data or information that is used to communicate between different web pages Why Cookies are used? Cookies are nothing but the user’s identity and used to track where the user navigated throughout the web site pages. The communication between web browser and web server is stateless. What if you want the previous history of this user communication with the web server? You need [...]

Read more...

1 comment - What do you think?
Posted by Ashish - March 25, 2010 at 2:23 pm

Categories: Concept, Internet Security, Manual   Tags:

Website Cookie Testing Part III

Applications where cookies can be used: 1) To implement shopping cart: Cookies are used for maintaining online ordering system. Cookies remember what user wants to buy. What if user adds some products in their shopping cart and if due to some reason user don’t want to buy those products this time and closes the browser window? When next time same user visits the purchase page he can see all the products he added in shopping cart in his last visit. 2) Personalized sites: When user visits certain pages they are asked which pages they don’t want to visit or display. [...]

Read more...

2 comments - What do you think?
Posted by Ashish - March 25, 2010 at 2:22 pm

Categories: Concept, Internet Security, Manual   Tags: