Posts

Showing posts with the label QTP

Different Types of Framework in QTP

What is a Framework ? Instead of providing a bookish definition of a framework, lets consider an example. I am sure you have attended a seminar / lecture / conference where the participants was asked to observe the following  guidelines - ·            Participants should occupy their seat 5 minutes before start of lecture ·            Bring along a notebook and pen for note taking. ·            Read the abstract so you have an idea of what the presentation will be about. ·           Mobile Phones should be set on silent ·           Use the exit gates at opposite end to the speaker should you require to leave in middle of the lecture. ·          ...

Steps to choose automation tool for a Project

Today, we are using Mobile Applications to access any amount of information such as getting directions to a restaurant, and booking tickets for travelling or even order a cab service using mobile apps. So, while increasing demand for mobile applications, there is shifting from desktops to smart phones. However nowadays Smartphone’s having different features and specifications are increased daily so, there is many challenges to the testers. So, now am writing this article for the purpose of finding best automation tool to test Mobile applications. Automation tool:- Testing team test the application number of times. To reduce the regression testing process we use automation tools. Mainly automation is used for regression testing. By using automation tools, save the project budget, productive efforts etc. But first you need to think automation is needed for your project. Before finding an automation tool for a project, three points must be remember 1.   ...

Software Testing Life Cycle

What is a Lifecycle? Lifecycle in simple term refers to the sequence of changes from one form to other form. These changes can happen to any tangible or intangible things. Every entity has a lifecycle from its inception to retire / demise. In a similar fashion, Software is also an entity. Just like developing software involves a sequences of steps, testing also has steps which should be executed in a definite sequence. This phenomenon of executing the testing activities in a systematic and planned way is called testing life cycle. What is Software Testing Life Cycle (STLC) Software Testing Life Cycle refers to a testing process which has specific steps to be executed in a definite sequence to ensure that the quality goals have been met. In STLC process, each activity is carried out in a planned and systematic way. Each phase has different goals and deliverables. Different organizations have different phases in STLC; however the basis remains the same. Below are the ph...

QTP Framework:- Web common functions sampel examples using QTP

Web common functions using QTP ' Function Name :Invoke_URL ' In Parameters : ' Out Parameters : ' Description :Invokes Url '******************************************************************************************************************************************************************************************* Option Explicit   ' Force explicit variable declaration. Function Invoke_URL(param_array) On Error resume next     'f_log.WriteLine "INFO <Invoke_URL>Entering the keyword Invoke_URL"     'Fetch the URL     site = param_array         'Format the URL by removing the spaces and converting the string to lowercase     'site = FormatInput(site)         'Create an IE browser object and invoke the URL         Set Brow_invok = createobject("InternetExplorer.Application") ...