Manual
manual software testing
manual software 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 [...]
Categories: Automation, Manual Tags: advantages, Automated, Disadvantages, Manual, testing
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.
Categories: Concept, Manual Tags: RSS aggregator, RSS feed
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 [...]
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.
Categories: Concept, Manual Tags: robots.txt
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.
Categories: Concept, Manual Tags: robots.txt rules
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.
Categories: Concept, Internet Security, Manual Tags: integration, Paypal, test case, testing
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 [...]
Categories: Concept, Internet Security, Manual Tags: What is Cookie
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. [...]
Categories: Concept, Internet Security, Manual Tags: Drawbacks of cookies