QA Masterz - Help, Tips and Tricks for Software Testers on Manual testing and Software testing tools like Selenium , QTP, LoadRunner, Jmeter, SoapUI and many more... We provide both Theory and Practical Knowledge on Software Testing and Test Automation. For more information call us at Call us : +91-8447306294 or mail us at qamasterz@gmail.com

Wednesday, 1 May 2013

Database Testing - Beginning Tutorials

Database Testing mainly concentrates on the following :

Data Integrity Test .

Stored Procedure Test .

Type Test .

Data Size Test .

Event Driven Item Test .

Input Item Verification .

Friday, 8 February 2013

Webdriver Script_003 : Handling Online Web Tables Part I

Hi All,

This is an another example script written to get the data from Online Web Table. In most of the websites, data is displayed in tabular format. Now, when new row get appended, it became difficult to track the content through ids or values. So, we use xPath and loop for this.

/* Script Summary

1. Set the Base URL to http://www.espncricinfo.com/icc_cricket_worldcup2011/engine/match/473326.html.
2. rowcount() Method will do the following things :

a) Will print the number of rows in data table.
b) Will print the name of `Indian Batting` Line Up.
c) You can use the script to print 1st Inning batting list for any match by simply replacing URL.

*/

Monday, 4 February 2013

Webdriver Script_501 : Basic Script

Hi,

This is the basic script for beginners in Webdriver with TestNG Framework. Script description is given below :

/* Script Summary

1. Set the Base URL to http://book.theautomatedtester.co.uk/.
2. Click on Chapter1.
3. Click on the radio button.
4. Change the select to Selenium RC.
5. Verify that the text on the right-hand side of the page has Assert that this text is on the page.
6. Verify that the button is on the page.

*/


Tuesday, 8 January 2013

How User ID became an E-mail Address

Hi All,

In our website portal, there is an E-mail address field and User ID field on registartion form. User ID field is editable and whenever user enters E-mail address, it is copied into User ID. A welcome mail is sent to user's email address entered during registration.

Now, some one entered E-mail address as user@qamasterz.in and User ID as user. This user was not recieving E-mail notification.

After searching, we found that E-mail was sent to user instead of user@qamasterz.in. Woooowwwww, so user is recieving notification at User ID. This issue consumed time and it was a major issue.

Wednesday, 26 December 2012

Boundary Value Analysis Examples

Bounday value analysis is a test case design technique in software testing. This covers the known areas of frequent problems at the boundaries of software component input ranges. Experience has shown that the boundaries of input and output ranges of a software component are common locations for errors that result in software faults. Boundary value analysis assists with the design of test cases that will exercise these boundaries in an attempt to uncover faults in the software during the testing process.Applying boundary value analysis you have to select now a test case at each side of the boundary between two partitions. The boundary value analysis can have 6 text cases: n, n-1, n+1 for the upper limit and n, n-1, n+1 for the lower limit. The best way to learn boundary value analsysis is by going though some examples. In this artticle we will cover few examples of BVA: