The harder the conflict, the more glorious the triumph.

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, 21 October 2011

QTP: How to check Broken Links

Broken Links also sometimes called as dead links are those links on the web which are permanently unavailable. Commonly found, 404 error is one example of such link. Now the question is how can we identify broken links with the help of QTP during the run session?There can be two ways to do this:Using Automatic Page checkpoint. By manually creating a Page checkpoint. Using Automatic Page checkpoint: Go to Tools > Options > Web > Advanced...

Thursday, 20 October 2011

Testing Methodologies

There are numerous methodologies available for developing and testing software. The methodology you choose depends on factors such as the nature of project, the project schedule, and resource availability. Although most software development projects involve periodic testing, some methodologies focus on getting the input from testing early in the cycle rather than waiting for input when a working model of the system is ready. Those methodologies...

Agile Methodology

Agile development methodology promotes adaptive planning, evolutionary development and delivery; time boxed iterative approach and encourages rapid and flexible response to change. It's a conceptual framework that promotes foreseen interactions throughout the development cycle.Among several agile development methodologies we use SCRUM which is an iterative, incremental framework for Software Development. Benefits of using our SCRUM Agile Methodology:Benefits...

Wednesday, 19 October 2011

QTP Script: Write a value to the Registry

' ============================================================= ' Sub :    RegistryWrite ' desc :   Writes a key value to the registry ' params : strRoot is the root key, i.e. "HKLM", "HKCU" '          strPath is the path to create, i.e.  '          "Software\Test\Automation" '          strValue is the value to write in the key ' returns : void ' =============================================================...

QTP: Example of how to write text to a file

' ============================================================= ' function: WriteLog ' desc :    Writes a message to a log file. File is created '           inside a Log folder of the current directory ' params :  strCode is a code to prefix the message with '           strMessage is the message to add to the file ' returns : void ' ============================================================= Function WriteLog(strCode, strMessage)...