Learning basics of QTP automation tool and preparation of QTP interview questions

This post is in continuation with QTP interview questions series. Following questions will help for preparing interview as well as learning the QTP basics.

Quick Test Professional: Interview Questions and answers.

1. What are the features and benefits of Quick Test Pro(QTP)?

1. Key word driven testing
2. Suitable for both client server and web based application
3. VB script as the script language
4. Better error handling mechanism
5. Excellent data driven testing features

2. How to handle the exceptions using recovery scenario manager in QTP?

You can instruct QTP to recover unexpected events or errors that occurred in your testing environment during test run. Recovery scenario manager provides a wizard that guides you through the defining recovery scenario. Recovery scenario has three steps
1. Triggered Events
2. Recovery steps
3. Post Recovery Test-Run

3. What is the use of Text output value in QTP?

Output values enable to view the values that the application talks during run time. When parameterized, the values change for each iteration. Thus by creating output values, we can capture the values that the application takes for each run and output them to the data table.

4. How to use the Object spy in QTP 8.0 version?

There are two ways to Spy the objects in QTP
1) Thru file toolbar: In the File ToolBar click on the last toolbar button (an icon showing a person with hat).
2) Thru Object repository Dialog: In Objectrepository dialog click on the button “object spy…” In the Object spy Dialog click on the button showing hand symbol. The pointer now changes in to a hand symbol and we have to point out the object to spy the state of the object. If at all the object is not visible or window is minimized then hold the Ctrl button and activate the required window to and release the Ctrl button.

5. What is the file extension of the code file and object repository file in QTP?
File extension of
Per test object rep: filename.mtr
Shared Object rep: filename.tsr
Code file extension id: script.mts

6. Explain the concept of object repository and how QTP recognizes objects?

Object Repository: displays a tree of all objects in the current component or in the current action or entire test( depending on the object repository mode you selected).
we can view or modify the test object description of any test object in the repository or to add new objects to the repository.
Quicktest learns the default property values and determines in which test object class it fits. If it is not enough it adds assistive properties, one by one to the description until it has compiled the unique description. If no assistive properties are available, then it adds a special Ordianl identifier such as objects location on the page or in the source code.

7. What are the properties you would use for identifying a browser and page when using descriptive programming?

“name” would be another property apart from “title” that we can use. OR
We can also use the property “micClass”.
ex: Browser(”micClass:=browser”).page(”micClass:=page”)

8. What are the different scripting languages you could use when working with QTP?

You can write scripts using following languages:
Visual Basic (VB), XML, JavaScript, Java, HTML

9. Tell some commonly used Excel VBA functions.

Common functions are:
Coloring the cell, Auto fit cell, setting navigation from link in one cell to other saving

10. Explain the keyword createobject with an example.

Creates and returns a reference to an Automation object
syntax: CreateObject(servername.typename [, location])
Arguments
servername:Required. The name of the application providing the object.
typename : Required. The type or class of the object to create.
location : Optional. The name of the network server where the object is to be created.

11. Explain in brief about the QTP Automation Object Model.

Essentially all configuration and run functionality provided via the QuickTest interface is in some way represented in the QuickTest automation object model via objects, methods, and properties. Although a one-on-one comparison cannot always be made, most dialog boxes in QuickTest have a corresponding automation object, most options in dialog boxes can be set and/or retrieved using the corresponding object property, and most menu commands and other operations have corresponding automation methods. You can use the objects, methods, and properties exposed by the QuickTest automation object model, along with standard programming elements such as loops and conditional statements to design your program.

12. How to handle dynamic objects in QTP?

QTP has a unique feature called Smart Object Identification/recognition. QTP generally identifies an object by matching its test object and run time object properties. QTP may fail to recognize the dynamic objects whose properties change during run time. Hence it has an option of enabling Smart Identification, wherein it can identify the objects even if their properties changes during run time.
Check out this:
If QuickTest is unable to find any object that matches the recorded object description, or if it finds more than one object that fits the description, then QuickTest ignores the recorded description, and uses the Smart Identification mechanism to try to identify the object.
While the Smart Identification mechanism is more complex, it is more flexible, and thus, if configured logically, a Smart Identification definition can probably help QuickTest identify an object, if it is present, even when the recorded description fails.

The Smart Identification mechanism uses two types of properties:
Base filter properties - The most fundamental properties of a particular test object class; those whose values cannot be changed without changing the essence of the original object. For example, if a Web link’s tag was changed from to any other value, you could no longer call it the same object. Optional filter properties - Other properties that can help identify objects of a particular class as they are unlikely to change on a regular basis, but which can be ignored if they are no longer applicable.

13. What is a Run-Time Data Table? Where can I find and view this table?

In QTP, there is data table used, which is used at runtime.
-In QTP, select the option View->Data table.
-This is basically an excel file, which is stored in the folder of the test created, its name is Default.xls by default.

14. How does Parameterization and Data-Driving relate to each other in QTP?

To data driven we have to parameterize. i.e. we have to make the constant value as parameter, so that in each interaction(cycle) it takes a value that is supplied in run-time data table. Through parameterization only we can drive a transaction (action) with different sets of data. You know running the script with the same set of data several times is not suggested, and it’s also of no use.

15. What is the difference between Call to Action and Copy Action.?

Call to Action: The changes made in Call to Action, will be reflected in the original action (from where the script is called). But where as in Copy Action , the changes made in the script ,will not effect the original script(Action)

16. Explain the concept of how QTP identifies object.

During recording qtp looks at the object and stores it as test object. For each test object QT learns a set of default properties called mandatory properties, and look at the rest of the objects to check whether this properties are enough to uniquely identify the object. During test run, QTP searches for the run time objects that matches with the test object it learned while recording.

17. Differentiate the two Object Repository Types of QTP.

Object repository is used to store all the objects in the application being tested.
Types of object repository: Per action and shared repository.
In shared repository only one centralized repository for all the tests. where as in per action for each test a separate per action repository is created.

18. What the differences are and best practical application of Object Repository?

Per Action: For Each Action, one Object Repository is created.
Shared: One Object Repository is used by entire application

19. Explain what the difference between Shared Repository and Per Action Repository

Shared Repository: Entire application uses one Object Repository , that similar to Global GUI Map file in WinRunner
Per Action: For each Action, one Object Repository is created, like GUI map file per test in WinRunner

20. Have you ever written a compiled module? If yes tell me about some of the functions that you wrote.

Sample answer (You can tell about modules you worked on. If your answer is Yes then You should expect more questions and should be able to explain those modules in later questions): I Used the functions for Capturing the dynamic data during runtime. Function used for Capturing Desktop, browser and pages.

21. Can you do more than just capture and playback?

Sample answer (Say Yes only if you worked on): I have done Dynamically capturing the objects during runtime in which no recording, no playback and no use of repository is done AT ALL.
-It was done by the windows scripting using the DOM(Document Object Model) of the windows.

22. How to do the scripting. Are there any inbuilt functions in QTP? What is the difference between them? How to handle script issues?

Yes, there’s an in-built functionality called “Step Generator” in Insert->Step->Step Generator -F7, which will generate the scripts as you enter the appropriate steps.

23. What is the difference between check point and output value?

An output value is a value captured during the test run and entered in the run-time but to a specified location.
EX:-Location in Data Table[Global sheet / local sheet]

24. How many types of Actions are there in QTP?

There are three kinds of actions:
Non-reusable action - An action that can be called only in the test with which it is stored, and can be called only once.
Reusable action - An action that can be called multiple times by the test with which it is stored (the local test) as well as by other tests.
External action - A reusable action stored with another test. External actions are read-only in the calling test, but you can choose to use a local, editable copy of the Data Table information for the external action.

25. I want to open a Notepad window without recording a test and I do not want to use System utility Run command as well. How do I do this?

You can still make the notepad open without using the record or System utility script, just by mentioning the path of the notepad “( i.e. where the notepad.exe is stored in the system) in the “Windows Applications Tab” of the “Record and Run Settings window.

Don’t want to miss any software testing tip! Subscribe via Email.




Related Posts:

  • Short Automation Testing Interview questions
  • How to get job in Software Testing quickly?
  • How to prepare for software testing interview
  • WinRunner automation tool Preparation: Weekend preparation Series
  • WinRunner Interview Questions with answers
  • 175 comments ↓

    #1 Pallavi on 01.16.08 at 5:34 am

    Great work vijay. These are ideal questions for interview.
    Can you provide some info about online downloadable vesrsions of automation tools like QTP or Winrunner?
    thanking you.

    #2 haridoss on 01.16.08 at 9:17 am

    How to test the cookies ?

    #3 sheetal on 01.16.08 at 3:54 pm

    nice article.Can you explain QTP automation framework.Which framework is used in your organization?

    #4 sheetal on 01.16.08 at 4:02 pm

    haridoss here is th link

    http://www.softwaretestinghelp.....e-testing/

    #5 Subhas on 01.17.08 at 11:33 am

    Hello Vijay,

    I am new to QTP. I want to test a basic sign up process by QTP. There are some fields (username, password, email address, phone number, city, country etc.) in the process.
    After recording this activity in QTP, what to do next to make sure that the process works properly. Please tell me the flow after the recording activity to test this process.

    Looking forward to your positive reply.

    Thanks

    #6 shyam krishnam on 01.21.08 at 10:50 am

    Hai haridoss,
    u may b knowing cookies are steps carried in a sessions which will be created by the server in the local system. Cookies testing can be carried out by disabling and disabling cookies(open ur browser-goto internet options),disable n enable the cookies by reducing n increasing the the disk space. then check the cookies in a session

    #7 SAILAJA on 01.24.08 at 4:29 am

    How to call Reusable action and shared OR into new script in QTP?

    #8 SAILAJA on 01.24.08 at 4:33 am

    Hi all this is my followup to the above question. I made the actions as reusable and objectrepositories aswell. and i want to call them in the new test .At that time do i need to associate the application with the test. if i am associating it it is running smoothly with out giving ant error.
    then my question is then what is the use of shared object repository.

    #9 Sheetal Lamba on 01.24.08 at 4:43 am

    Subash

    i would recommend Avoid using “Record/Playback” as a method of automating testing. This method is fraught with problems, and is the most costly (time consuming) of all methods over the long term. The record/playback feature of the test tool is useful for determining how the tool is trying to process or interact with the application under test, and can give you some ideas about how to develop your test scripts, but beyond that, its usefulness ends quickly.? The scripts resulting from this method contain hard-coded values which must change if anything at all changes in the application.

    ? The costs associated with maintaining such scripts are astronomical, and unacceptable.

    ? These scripts are not reliable, even if the application has not changed, and often fail on replay (pop-up windows, messages, and other things can happen that did not happen when the test was recorded).

    ? If the tester makes an error entering data, etc., the test must be re-recorded.

    ? If the application changes, the test must be re-recorded.

    ? All that is being tested are things that already work. Areas that have errors are encountered in the recording process (which is manual testing, after all). These bugs are reported, but a script cannot be recorded until the software is corrected. So what are you testing?? Adopt a data-driven automated testing methodology. This allows you to develop automated test scripts that are more “generic”, requiring only that the input and expected results be updated.

    #10 Sheetal Lamba on 01.24.08 at 4:47 am

    subash,

    answer to your question is.after recording just run the test.

    #11 Sekar on 01.24.08 at 5:32 am

    Highly informative. Can anyone share about the QTP Framework they follow.

    #12 Sekar on 01.24.08 at 5:39 am

    hi sheetal. I agree with you in regard to restrict the “Record/playback” (R/P) methodology. I would like to add to your note, what ever you mentioned is fine with web based application where objects may change dynamicaly but in window based application we can give a try with (R/P), needing application to be stable.

    #13 anagha on 01.26.08 at 10:59 am

    Can any one tell me from where to download qtp latest trial version. I tried it on hp site but they hv removed it …its not avail

    #14 Sheetal Lamba on 01.28.08 at 1:44 am

    Hello Sekar,

    even in window based application the application might change quite frequently Also testing Automation is done for applications with long lives.hence R/P will not be a approach.

    #15 Sekar on 01.28.08 at 6:48 am

    Hi Sheetal thanks for the update. I agree with you. In framework where re-usable action scenario exists how will you tackle them. I meant R/P usage for those actions and modifying the script internally. If you have any suggestions please let me know on this.

    #16 sushil on 01.29.08 at 7:08 am

    Hi Vijay,

    Do you have any online demo on QTP?

    #17 Hari Prasad on 01.30.08 at 7:33 am

    I have received mail but Im not getting proper information regarding the certifaication coures in TESTING..pls help me.

    #18 sheetal lamba on 01.30.08 at 10:45 pm

    Hello Hariprasad,

    what information u need for certification courses.

    Sekar,
    Drop your email id i will email you info about QTP framework.

    #19 Hari Prasad on 01.31.08 at 7:01 am

    Hello sheetal…I want to do the certifaication course which helps me to be a good performer in testing …I just started now .Rgds

    #20 nataraj on 01.31.08 at 7:20 am

    Hi
    working as QA engg from 1+ yrs… can anyone give ur mail id working on automation testing.. this is to just get the solutions for my questions..

    natarajjk@gmail.com … u can send ur contact my mail id to this ID..

    Thanx in adv

    #21 Hanish on 01.31.08 at 9:44 am

    I have just started using QTP a few months back but still iam not confortable when it comes to scripting. I mean due to lack of guidance I am unable to implement most of it. Can u help me on how to use QTP with VB script or if u can provide a recorded script (simplified one) that will help understand it better

    #22 VINAY on 02.05.08 at 6:41 am

    Hi SHEETHAL thanks for the update. I agree with you. In framework where re-usable action scenario exists how will you tackle them. I meant R/P usage for those actions and modifying the script internally. If you have any suggestions please let me know on this

    #23 venkata on 02.07.08 at 10:12 am

    Hi,

    Can you please let me know about the database connactovity with wizard, without wizard? and also let me know about the file functions using QTP?

    Regards,
    Venkata.

    #24 venkata on 02.07.08 at 10:18 am

    Hi,

    Can you please let me know about the database connactovity with wizard, without wizard using QTP? and also let me know about the file functions using QTP? Please ex[lain with example,

    Regards,
    Venkata.

    #25 kapa on 02.07.08 at 11:10 am

    Hello Sheetal,

    Can you also share with me the QTP automation frame work that you designed, and also some tips on descriptive programming that you would have put together at one place. We are just starting an automation on a website. My email id: kapasamee@rediffmail.com

    #26 sheetal lamba on 02.07.08 at 8:52 pm

    Hello Vinay & kapa,

    i will post article on automation framework and about descriptive programming on website on weekend.

    All the best,
    Sheetal

    #27 venkat on 02.08.08 at 6:39 am

    what are the latest versions of qtp,testdirector,winrunner

    #28 anil on 02.09.08 at 1:07 pm

    hi sheetal can u mail the qtp framework model and descriptive programming help and problems

    #29 anil on 02.09.08 at 1:10 pm

    my e-mail id is anilbody@yahoo.com

    #30 Javaid on 02.09.08 at 11:03 pm

    Hi

    I have 2 questions if you can answer please:
    1. I am using QTP 8.2 and IE6 but I have Fire fox Mozila as well. When I try to run my script after recording, an error message pop up stating “Browser can’t be opened” etc.

    2. As I am also new to QTP and am not comfortable when it comes to scripting. I have no guidelines so am unable to implement most of it. Can u help me on how to use QTP with VB script or if u can provide a recorded script (simplified one) that will help understand it better

    Thanks in advance.

    #31 Prabhu on 02.18.08 at 3:49 am

    Hello Sheetal,

    Please mail me about the automation framework using QTP.

    my emailid: prabhushankar@gmail.com

    Thanks
    Prabhu

    #32 Ashok on 02.20.08 at 8:23 pm

    Hello Sheethal

    can you pls send the automation frame work
    my e mail id is nashok2000@yahoo.com

    #33 Jaykay on 02.21.08 at 10:18 am

    Hello Sheethal

    I too need automation frame work pls send across
    my e mail id is jayakrishnamohan@gmail.com

    #34 sachin a on 02.25.08 at 9:40 am

    Pl. let me know if any article available to set QTP automation framework .
    What points should be considered in automation required ?
    Guidelines for setting automation framework.

    #35 Prasad Chowdary Ravuri on 02.26.08 at 6:06 am

    Hi all, this is prasad working as Quality Engineer since 3 years in bangalore, we r planning Automation Testing in our office , can anybody send some automation Frame work details…. Thanx in advance

    Prasadravuri@gmail.com

    #36 Madhavi on 02.26.08 at 2:42 pm

    Pls send me the automation framework

    #37 siva on 02.28.08 at 10:26 am

    Hai sailaja,
    suppose 5 members are working on one(windows or web application).Their contribution is each have to automate 1 test scenerio.Assume one is dependent over the other.If any one of them build the object repository ,others can easily reuse it.There is no need to build the object repository by every one.

    #38 srinu on 02.28.08 at 11:00 am

    hi

    #39 Raj on 03.02.08 at 1:32 am

    Hello Sheetal,
    could you please mail me the QTP framework model and descriptive programming.
    - Raj
    rajukotha@yahoo.co.in

    #40 Abhinav on 03.03.08 at 5:21 pm

    Could Any one expalain me what is Descriptive programming in QTP,and how it is usfull of testing purpose.

    #41 swati on 03.05.08 at 2:41 pm

    Hi friends,

    i am new to QTP, please do guide me how to start of with i have winrunner knowledge.

    regds,
    swati : swty79@rediffmail.com

    #42 Pradeep on 03.14.08 at 1:15 pm

    Hello Sheetal,

    Can you also share with me the QTP automation frame work that you designed, and also some tips on descriptive programming that you would have put together at one place. We are just starting an automation on a website. My email id: kapasamee@rediffmail.com

    #43 Pradeep on 03.14.08 at 1:16 pm

    Hello Sheetal,

    Can you also share with me the QTP automation frame work that you designed, and also some tips on descriptive programming that you would have put together at one place. We are just starting an automation on a website. My email id: pvspradeep@gmail.com

    #44 Raj on 03.14.08 at 3:59 pm

    How can I run QTP nightly batch scripts while the computer is loked?

    #45 veena on 03.14.08 at 6:47 pm

    thats a great help.

    #46 veena on 03.14.08 at 6:50 pm

    good.

    #47 Goverdhan Goud on 03.18.08 at 4:40 am

    HI, Sheetal
    this is Govardhan
    pls send me which type of books are best for automatioon tools .
    my Email: g.govardhan6@gmail.com

    #48 sekar on 03.18.08 at 6:27 am

    you can checkout in Quicktestprofessional blog. They too have some relevant reference.

    #49 Valeria on 03.19.08 at 1:50 am

    I,m new to QTP, pleasedo guide me how to start of with.
    I have WinRunner knowledge. Web application.
    Thank you
    my e-mail valeriamn2007@yahoo.com

    #50 vish on 03.21.08 at 9:57 am

    Hello Sheetal,
    could you please mail me the QTP framework model and descriptive programming.
    my email id is: shettypvishal@gmail.com

    #51 hari on 03.21.08 at 10:32 am

    what is the use of functions in qtp when can we use fuunctions in our build

    #52 Val on 03.21.08 at 2:56 pm

    Hi Sheebal! you wrote on 2/07/08 :
    “i will post article on automation framework and about descriptive programming on website on weekend.”
    Did you do this? If yes where I can read it?
    Thank you Val

    #53 navitha on 03.24.08 at 6:06 pm

    Hi,

    Can anyone tell me about automation framework using QTP.Please Email me
    To
    navithaalways@gmail.com

    #54 sekar on 03.25.08 at 3:56 am

    hi hari,

    functions can be part of automation framework. when we talk about function in automation its like functions which can be reused . For example you login and password in web based application and you do have multiple user using with different ID, so we can have fuction for those sort of scenarios, its simple to create not neccesary it has to be part of framework, use just do Record/PLayback for Login and just parameterise it.

    #55 sekar on 03.25.08 at 11:44 am

    hi abhinav,

    Descripting Programming or DP is you are preparing the script on your own instead of doing REcord/Playback (R/P). you just require object mangement tools (OMT) in support to write the script on your own. OMT guides you to identify object properties (OMT comprises of Object reporsitory and object Spy). DP in simple it is you write line of code (LOC) instead of letting QTP (R/P). DP can also be implemented in Framework effectively.

    Hi RAj,

    just work on VBS file creation which drives your script ( kicks off through system run time when you desired to work on .. even midnight)

    #56 sekar on 03.25.08 at 11:45 am

    hi abhinav,

    Descripting Programming or DP is you are preparing the script on your own instead of doing REcord/Playback (R/P). you just require object mangement tools (OMT) in support to write the script on your own. OMT guides you to identify object properties (OMT comprises of Object reporsitory and object Spy). DP in simple it is you write line of code (LOC) instead of letting QTP (R/P). DP can also be implemented in Framework effectively.

    Hi RAj,

    just work on VBS file creation which drives your script ( kicks off through system run time when you desired to work on )

    #57 Sreedhara Varma on 03.28.08 at 6:47 am

    Any one help to get the clear picture about the automation frame work and architecture. what is the best suited mostly used frame work in the organizations. plz mail me on this regard to ‘getsreedhara@gmail.com’. Thanks in advance.

    #58 Sreedhara Varma on 03.28.08 at 6:58 am

    what are the different testings we can do using QTP tool.plz mail me
    getsreedhara@gmail.com

    #59 Sreedhara Varma on 03.28.08 at 7:03 am

    Any one help me to get the clear picture about the automation frame work and architecture. what is the best suited mostly used frame work in the organizations. Thanks in advance. plz mail me on this regard to getsreedhara@gmail.com

    #60 samba on 03.28.08 at 4:15 pm

    hi to all,
    I have excel sheet with 1000 records.I have to insert into data base using qtp.So can any body give the solution and please send to mail id:samba_lade@yahoo.co.in.

    Thanks,
    samba murthy.lade

    #61 sekar on 03.31.08 at 7:24 am

    hi samba murthy

    yes it is possible you need to enable your “Add-in” in QTP.. Terminal Emunater… or if possible you can wrk with Macros..

    #62 salim on 04.02.08 at 7:01 am

    hi buddy,
    iam new to qtp can anybodier help me how we change the objects throgh object repositary contact me jobssalim@gmail.com

    #63 Vinny on 04.02.08 at 3:24 pm

    Can someone please send me the Sample QTP Certification Question and Answers.
    my mail id is - vinny_verma2005@yahoo.com

    Thanks in Advance.

    #64 Sivarajan on 04.03.08 at 11:04 am

    hello…. i need QTP Framework Model….. please send to my mail id if any one have it d.sivarajan

    #65 Sivarajan on 04.03.08 at 11:05 am

    hello…. i need QTP Framework Model….. please send to my mail id if any one have it d.sivarajan@gmail.com

    #66 Muthukarthikeyan on 04.05.08 at 12:09 pm

    I need to get certification in QTP. What are the procedures for writing this online exam ?

    #67 dipak on 04.08.08 at 4:47 pm

    What is Key word driven testing ?
    Plz Send me Detail For All
    Thanks

    #68 rahini on 04.14.08 at 5:32 am

    what is the meaning of key word driven and data driven testing in QTP

    thanks in advance

    #69 Jay on 04.14.08 at 11:46 am

    Hi..
    Please mail me a copy of the QTP Automation Framework..@sujayrj@gmail.com

    #70 Rajkumar on 04.16.08 at 4:39 am

    Can Any one Tell me about automation Frameworks.And how to create automation Framework.Can any one just mail me the Automation Framework scripts….. Pls

    My mail Id is rajkumarit81@gmail.com

    #71 manojkumar on 04.17.08 at 9:21 am

    mail me copy of QTP automation

    #72 manojkumar on 04.17.08 at 9:23 am

    mail me copy of QTP automation

    my mail id is rimanojkumar172@gmail.com

    #73 Shaikat on 04.17.08 at 9:38 am

    hi vinay,
    the contents u have provided is really informative to start with but i m just a beginner in QTP, working in testing.I wish to excel in automation to comply with recent market demands and improve my knowledge in theory and practical.

    could you plz guide me? Rgds.

    #74 javeed on 04.21.08 at 12:23 pm

    Can any body tell me plz about realtime QTP Frame work….

    #75 Samrendra on 04.24.08 at 12:58 pm

    Hi,

    Anybody can send me the name of QTP books.
    and notes on QTP.

    URL from where i can download free trial version.

    Samrendra

    #76 sam on 04.26.08 at 12:35 pm

    Hi

    #77 sam on 04.26.08 at 12:37 pm

    very good

    #78 shantha on 04.30.08 at 10:01 am

    hi,
    THis is shantha. i want some guide to learn qtp. i have a tool.but i dont have a proper book.plzz send some books.or send some useful link in qtp

    thanx
    its shantha

    #79 sanatan on 04.30.08 at 12:54 pm

    can any one tell me from where , can i get QTP free download version

    #80 RamaSubramanian on 04.30.08 at 3:28 pm

    Can Anybody mail me at subu_scorpio@yahoo.com about the following topics

    1. QTP Automation
    2. Descriptive programming in QTP
    3. kEY WORD driven programming?
    4. How to create a Framework in QTP?

    #81 RamaSubramanian on 04.30.08 at 3:30 pm

    Can Anybody mail me at subu_scorpio@yahoo.com about the following topics

    QTP Automation
    Descriptive programming in QTP
    kEY WORD driven programming?
    How to create a Framework in QTP?

    #82 narsi on 05.08.08 at 1:52 pm

    What is the use of the Action Tool bar in QTP Explain Briefly

    #83 Miffy on 05.09.08 at 4:08 pm

    which the object model the qtp uses for the object identification in an application?

    #84 vinod on 05.13.08 at 10:15 am

    where can i find complete syllabi of winrunner?

    #85 vinod on 05.13.08 at 10:18 am

    As a fresher if i do foundation level certification in testing in ISTQB,can i get a job out of it?

    #86 GSREDDY on 05.15.08 at 7:55 am

    THIS IS GOOD .
    CAN U EXPLAIN ABOUT THE QTP FRAME WORK CONCEPT .

    #87 vishnu on 05.18.08 at 11:29 am

    Hello friends ,
    Can you please send me some sample rational functional Tester material .

    Thanks and Regards,
    Vishnu

    #88 thilak on 05.24.08 at 5:53 am

    hi all
    can anybody tell is there any difference between parametrizing and data driven test in automation

    Thanks & regards
    Thilak

    #89 T.R.RAMASUBRAMANIAN on 05.26.08 at 12:34 pm

    Can anybody email me the site which gives information on QTP framework? Is it possible for me to get some live experience on Projects using QTP downloadable from Websites

    Kindly inform me at the above email address subu63_scorpio@rediffmail.com

    #90 shashi vardhan Goud on 05.27.08 at 3:47 am

    HI,
    This is shashi i got CSTE&CSQA internal certifications in cognizant technology solutions . So i would like to write the CSTE&CSQA external certifications. so please send me mail what type of books are best for external certifications.

    #91 shashi vardhan Goud on 05.27.08 at 3:49 am

    my email :fish_sr2005@yahoo.com

    #92 Pallavi T on 06.02.08 at 6:05 am

    Very helpful

    #93 Manish on 06.02.08 at 6:23 am

    Hi,
    I need to have some info regarding variuos types of Test Data. I have got some stuffs like valid data, invalid data,No data, Illegal data. I need more of them. please suggest me with them or any link for reference.

    Thanks

    #94 sanjana on 06.02.08 at 8:50 am

    hi sheetal

    could you please mail me the QTP framework model and descriptive programming.

    my mail id is
    sanjana_dec7@yahoo.com

    #95 Jeya on 06.04.08 at 4:20 am

    Can any one send me the QTP Automation framework types to my mail id pls….

    cjp_ind@yahoo.com

    Thanks,
    Jeya

    #96 Prathap on 06.04.08 at 2:34 pm

    Can anyone help me how to use Object repository in QTP 9.2? I am familior with QTP 8.0

    #97 Chiranjeevi on 06.05.08 at 11:08 am

    Hi Sheetal,
    The Information provided by you is really very helpfull

    I have just started using QTP a few months back but still iam not confortable when it comes to scripting. I mean due to lack of guidance I am unable to implement most of it. Can u help me on how to use QTP with VB script or if u can provide a recorded script (simplified one) that will help understand it better,

    Can you also tell me where i can find some online demos for QTP

    #98 Chiranjeevi on 06.05.08 at 11:09 am

    Hi Sheetal,
    The Information provided by you is really very helpfull

    I have just started using QTP a few months back but still iam not confortable when it comes to scripting. I mean due to lack of guidance I am unable to implement most of it. Can u help me on how to use QTP with VB script or if u can provide a recorded script (simplified one) that will help understand it better,

    Can you also tell me where i can find some online demos for QTP.
    My mail id is chiru.free2booz@gmail.com

    Thanks in advance

    #99 Sunny Kathuria on 06.10.08 at 5:29 am

    Dear All,

    Im having a set of 60 QTP Questions which will help you in clearing the exam. They also helped a lot to me in clearing the exam as well. If interested do let me know on sunny_disha123@yahoo.co.in

    #100 Preety on 06.10.08 at 11:57 am

    Can anyone Pls send me some information and tell me how to create framework in QTP

    preetysahay@gmail.com

    Thanks in Advance

    #101 Amit K tawde on 06.12.08 at 4:13 am

    Hi;
    As i am new in software testing & i am working with a firm were i am the only tester.they are going to buy QTP.can anyone please give me QTP demo & tips for hoe to handle QTP on working level.

    #102 Amit K tawde on 06.12.08 at 4:14 am

    Hi;
    As i am new in software testing & i am working with a firm were i am the only tester.they are going to buy QTP.can anyone please give me QTP demo & tips for how to handle QTP on working level.

    #103 Nagendra on 06.12.08 at 5:55 am

    I need a practical example which includes all the concepts mentioned above.

    #104 Nagaveni on 06.12.08 at 11:09 am

    Hello Sheetal,
    could you please mail me the QTP framework model and descriptive programming.
    If possible could you kindly send some guiding docs on QTP
    my email id is: nagavenibm@aol.com

    #105 amit on 06.16.08 at 4:41 am

    Hi Sheetal;
    As i am new in software testing & i am working with a firm were i am the only tester.they are going to buy QTP.can you please give me QTP demo & tips for how to handle QTP on working level.

    #106 hema on 06.16.08 at 7:13 pm

    hello Sunny Kathuria
    can u send 60 qtp qtns along with answers to hema_abcd@yahoo.com pls…..

    #107 hema on 06.16.08 at 7:15 pm

    Hi Sheetal,
    could u tell the diff between loop and iteration
    system testing & ene-to-end testing
    black box testing & functional testing

    #108 hema on 06.16.08 at 7:18 pm

    Hi Sheetal,
    what is functional testing
    what is functiionality testing

    #109 Harri on 06.18.08 at 2:43 pm

    hi
    can any one tell me how to do validation testing in QTP

    #110 remo on 06.21.08 at 6:08 am

    what is accesbilty checkpoint and were it is applied please tell me this information

    #111 suseela on 06.23.08 at 6:26 am

    please send me what is meant by qtp framework?

    #112 Shruthi on 06.26.08 at 1:48 pm

    Hi , i am new to QTP. I have to test web page which has java application using QTP 8.2, the problem is i am able to record the application but when i try to run it fails…do i need java addin for this? if so, where can i download it for free?
    Thanks in advance

    #113 sagar bandari on 07.01.08 at 5:33 am

    any one plz explain briefly about the parametarization and automation frame works and also test modes

    thanks and regards

    sagar

    #114 sagar bandari on 07.01.08 at 5:35 am

    any one plz explain briefly about the test modes, automation frame work

    thanks and regards

    sagar

    #115 rohan on 07.02.08 at 4:36 am

    Dear Friends,

    For real time concepts , QTP scripts and Certification Material, please visit quicktesthp.blogspot.com . The posts are updated regularly. If anyone would like to contribute, please feel free to contact me. Refer my blog for contact details.. And Hats off to Vijay for this great site which also helped me a lot. Cheerz softwaretestinghelp..

    Blog Address
    quicktesthp.blogspot.com

    ——————–
    I am an expert in QTP having certification as well. I have 5 years of experience in this tool.

    Keywords: QTP, quicktest, hp, qtp certification, quicktest professional

    #116 Ali Asgar on 07.04.08 at 5:46 am

    Hello Sheetal,
    Can you pls Email me the QTP automation frame work that you designed, and also some tips on descriptive programming that you would have put together at one place. I have just started an automation on a web based App.
    My email id: shakir.aliasgar@yahoo.co.in

    #117 salim on 07.04.08 at 11:00 am

    Anybodiers knows editing scripts in imacros

    #118 vikram K on 07.08.08 at 8:45 am

    Hi sheethal,

    Could you please send me the details of QTP Certification(cost, how to apply,study material,syllabus)
    My mail ID:vikram.kamaraj@hcl.in

    #119 Pedro on 07.08.08 at 10:28 pm

    Hello, i am new on this forum, could anyone send some information or links about QTP in order to start learning… thanks in advance.

    mail to: palacios_pedro@hotmail.com

    #120 Vani on 07.09.08 at 9:55 am

    how to prepare data for QTP scripts. if fields accepts only alphabets( say for a huge no of iterations)

    #121 Phani on 07.14.08 at 1:00 pm

    I saw some one asking for the software download. Here are the links.

    http://rapidshare.com/files/71......part1.rar
    http://rapidshare.com/files/71......part2.rar
    http://rapidshare.com/files/71......part3.rar
    http://rapidshare.com/files/71......part4.rar

    #122 Srinivas on 07.15.08 at 6:36 pm

    Hi sheetal,
    can you pls send the automation frame work
    my e mail id is srinivas_depa@yahoo.com

    #123 Yashavanth on 07.17.08 at 7:17 am

    Hi Sheetal,
    I am totally new to QTP and started to automate a website, its really giving problems in R/P. So i have decided to script. I dont know anything regarding this except v shld know VB script. CAn u please guide me and send some materials?
    ALso i needed info regarding QTP certification,please send the details if u know.
    thnx
    my email id-yashupayyadi@gmail.com

    #124 Yashavanth on 07.17.08 at 7:20 am

    sorry, a web application….please mention if there r any books also??

    #125 praveen on 07.22.08 at 1:05 pm

    im new to QTP.
    please can any one tell me how many files are created while excuting the web application in QTP.

    #126 Archana on 07.24.08 at 12:26 pm

    Dear All,

    There are some testing software tools in the following path.

    http://rapidshare.com/users/7NSHZZ/1

    #127 praveen on 07.27.08 at 2:55 pm

    I am trying to read the rediffmail usign the below code. But facing problem, while i user to get the link of the mail, i am getting all the link of the page, While i just want to get only mail name - link (not all the link of an page)
    Dim Lnk,Webcheckbox
    Set Lnk= Description.Create
    ‘********* To count and display the webcheckbox
    Lnk(”micclass”).value=”Link”
    set LinkName= Browser(”Welcome to Rediffmail:”).Page(”Welcome to Rediffmail:”).ChildObjects(Lnk)
    LinkCount=LinkName.Count
    msgbox LinkCount
    For i=1-1 to LinkCount-1
    DataTable.SetCurrentRow(i)
    DataTable.Value(”Name”,1)=LinkName(i).GetRoProperty(”name”)
    Next

    #128 Vijay on 07.29.08 at 6:42 am

    I have a few questions. Please answer me?

    How to use framework?
    Is it a seperate software? If so is it downloadable?

    #129 phalguna on 08.07.08 at 11:54 am

    hi sheetal

    could you please mail me the QTP framework model and descriptive programming.

    my mail id is
    sprao_1305@yahoo.co.in

    #130 phalguna on 08.07.08 at 11:56 am

    hello Sunny Kathuria….
    can u send 60 qtp qtns along with answers to my mail Id
    sprao_1305@yahoo.co.in

    #131 manoj on 08.10.08 at 5:50 pm

    How can i make a good help manual of an application software related to complete office automation.

    #132 baji on 08.12.08 at 6:12 am

    Can anyone Pls send me some information and tell me how to create framework in QTP

    #133 kavithachennai on 08.12.08 at 6:25 am

    hi this is kavitha from chennai can any bodiers send me
    qtp or loadrunner video tutorial contact me capitaljun@gmail.com

    #134 Mani on 08.12.08 at 1:26 pm

    Hi,

    Could you please give an article about automation framework and frameworks that applies for QTP

    #135 Devender Chandel on 08.13.08 at 3:37 pm

    Hello Sheetal, I think you have a good knowledge about QTP. Please help me in learning QTP.
    Please tell me how to test the user & password in QTP flight eaxample with different values.

    #136 sudesh on 08.19.08 at 2:50 pm

    I am new to QTP , can anybody list out the imp. topics to be studied to clear QTP interview?

    #137 Sandeep on 08.19.08 at 7:04 pm

    Hi freinds,
    I am new to software testing.can you please tell me in the real time environment how one software to be tested?from where we are starting the testing like that.and please tell me the imp portions.

    #138 ExpertQTP on 08.22.08 at 5:48 am

    Hi Sudesh,
    Firstly I will suggest you to clear your automation concepts and then go through the QTP tutorial provided in the QTP itself.

    Let me know in case of any doubts.

    #139 sudesh on 08.23.08 at 3:43 am

    Hi ExpertQTP,
    I am already doing that, but wanted to try hands on whatever i learnt.
    Is there any site where i can try web testing practically?

    #140 salim on 08.23.08 at 4:45 am

    hello sudesh i will give you sample web projects contact me: jobssalim@gmail.com

    #141 Nikhil on 08.25.08 at 11:55 am

    Can you please provide some information on the framework

    #142 Sabareesh on 08.26.08 at 3:04 pm

    Can any one explain that how Object Identification Concept and Object Repository Manager

    And How Object Spy reads and provides the Object name, Class name, Properties of it, mainly wats happening in the backend

    #143 salim on 08.27.08 at 6:58 am

    Can anyone explain what is the use of function libraries in qtp eg:how we can change the functions,classes etc

    #144 salim on 08.27.08 at 7:46 am

    what is the difference between Run time object method and test object method

    #145 Devender chandel on 08.28.08 at 4:28 am

    Kindly send me the code how to run a login page with different user name & password no of times after recording sample Flight application of QTP using VBscript before closing the application.

    #146 santosh on 08.28.08 at 4:32 am

    hello…. i need QTP Framework Model….. please send to my mail id if any one have it

    #147 santosh on 08.28.08 at 4:34 am

    hello…. i need QTP Framework Model….. please send to my mail id if any one have it
    please sheetal…
    my e-mail is singh.30a@gmail.com

    #148 sowmya on 08.28.08 at 7:23 am

    how to get values frm datatable and input in the application?
    should be generic i need logic and coding
    any one help me

    #149 Thamaari Kannan on 09.01.08 at 8:35 am

    Hi,
    I am in the process of designing a Automation framework for testing web based applications using QTP. How to design a Automation framework using Hybrid Framework? Its very urgent.
    Please mail me to itsthamarai@yahoo.co.in

    Thanks,
    Thamarai.

    #150 Ashish on 09.03.08 at 4:31 pm

    Please give me some information on automation framework. Thanks..

    #151 praveen on 09.09.08 at 12:39 pm

    Hi , I am praveen saini, working in s/w testing field. I am looking job in s/w testing field(Manual / Automation -qtp). If someone having any info. please let me know.

    Thx
    sainipra@gmail.com

    #152 rajesh singh on 09.09.08 at 2:08 pm

    hi sainipra,
    plz send me book

    #153 Kishore on 09.10.08 at 4:15 am

    Hi all,
    Can anyone mail me syllabus for QTP certification?

    kindly use below id
    kishoresharma1@gmail.com

    Thanks

    #154 Veerabhadra on 09.11.08 at 12:21 pm

    Hi all
    Can any one tell me, is it necessary to have the knowledge of SQL server for a tester.

    #155 leela on 09.11.08 at 4:39 pm

    Hi I need Qtp Frame work model.Can anyone send it to my mail id mail2leelav@yahoo.com

    #156 rajesh on 09.18.08 at 1:34 pm

    i was new to software testing i learnt manual. can any one help me to learn Q.T.P.please sende me the pdf’s u people have to the mail id which i mentioned.
    thanking u a lot
    and will be waiting for the pdf’s
    Rajesh

    #157 rajesh on 09.18.08 at 1:36 pm

    plz mail me to krishnarajesh.btech@gmail.com

    #158 mani on 09.24.08 at 7:53 am

    Hi sheetal,

    could you pls send me the QTP automation framework to manimarant@gmail.com

    -mani

    #159 Digvijay on 09.26.08 at 8:48 am

    Hi sheetal,
    I am working on manual testing. but i want to learn QTP.
    So can u help me to learn. if u have some information.
    and please tell me how QTP is exactly use to test any application. How we can decide that to test by QTP or give me example how u r using it.
    And send me QTP automation framework

    #160 santosh on 09.27.08 at 8:56 am

    hi this is santosh, i am working in mumbai as a software test engineer.

    i would like to discuss with qtp 8.2.

    #161 Supriya on 09.27.08 at 8:19 pm

    Hi,

    Please give me info about some of the good and affordable software testing institutes in bangalore for automation and scripting.

    #162 vivek on 09.29.08 at 3:25 am

    please provide me some basic concepts of vb script so that i can make use in learning QTP.

    #163 vivek on 09.29.08 at 3:26 am

    please provide me some basic concepts of vb script so that i can make use in learning QTP.
    My mail Id is vive1980@gmail.com

    #164 ExpertQTP on 10.02.08 at 7:03 am

    @Thamaari Kannan: Regarding Hybrid Automation framework creation, I am giving a live presentation on the same. Let me know in case you are interested.

    @Ashish: You can learn more about Automation frameworks here:
    http://quicktesthp.blogspot.co.....ation.html

    @Kishore: QTP Certification syllabus sent to your email ID.

    keep posting your doubts here..

    Regards,
    ExpertQTP
    http://quicktesthp.blogspot.com

    #165 chandresh on 10.02.08 at 9:27 am

    Hii
    QTP testing is the web base and GUI base testing possible?

    #166 pradeep on 10.03.08 at 12:02 pm

    Can any one tell me,best qtp traing centre in noida. is it necessary to have the knowledge of SQL server for a tester.

    #167 pradeep on 10.03.08 at 12:06 pm

    working as QA engg from 2 yrs… can anyone give ur mail id working on automation testing.. this is to just get the solutions for my questions..

    #168 pradeep on 10.03.08 at 12:12 pm

    I need to get certification in QTP. What are the procedures for writing this online exam ?

    #169 ho nguyen on 10.06.08 at 9:21 am

    I would like to have automation script to test Login page of website http://VietBDS.com

    Pls help!
    Thanks

    #170 srinivas on 10.06.08 at 2:01 pm

    hi,
    pls let me know whot is the use of “new library function” under the file ,even we can create library function seperately

    #171 srilaxmi on 10.07.08 at 2:42 am

    Hi friends
    what are the uses of the scripting windows when we use in testing (purpose of the scripting windows )
    and Data table integration and data driven test give some explanation and some examples.And tell me what is TSL script

    #172 srilaxmi on 10.07.08 at 2:44 am

    Hi friends

    please tell me what is open source project ,where is it available ,how can i utilise it i want to gain some testing practical knowledge can any one guide me

    #173 Subhas on 10.07.08 at 5:29 am

    Hello sheetal lamba,

    U have suggested me not to use the R/P methods in QTP, rather to adopt a data-driven automated testing methodology. Thanx for this suggestion, but plz let me know how to use this data-driven automated testing methodology in the above login functionality.

    Thanx
    Subhas.

    #174 vamsi on 10.07.08 at 3:49 pm

    recently i have completed testing ,so i need some small projects so that i can practice ,i need functionla QTP test process plz send to my mail id
    thanking you…

    #175 Rajani on 10.08.08 at 5:55 pm

    Could you please mail me the QTP framework model and descriptive programming material that everyone has requested at rajani66@optonline.net

    Leave a Comment