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
  • Preparing For Software Testing Interview - Simple Tips To Follow Prior And at The Time of Interview
  • WinRunner automation tool Preparation: Weekend preparation Series
  • 342 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

    #176 sandeep k.sharma on 10.13.08 at 11:56 am

    Hi,i am sandeep sharma .i am fresher with QTP ,and i want to know,how we provide the link of QTP with website .we are using the web testing,mostly developed in .NET.and now we are using the auto.testing in the comp.so,pls tell me in brief

    #177 sandeep k.sharma on 10.13.08 at 12:12 pm

    hi ,this is sandeep k sharma .when we are installing the QTP 9.2 then it ask the msg to firstly instal the QTP,SO , pls tell me ,but we install either may be QTP9.5 evolution or the another one .and pls tell me its path also from where we have to install .i am req you pls reply me as early as possible

    thanx
    sandeepk.sharma

    #178 sandeep k.sharma on 10.13.08 at 12:19 pm

    hi,pls also tell me ,what we have to install ,when we are going to auto.testing OF WEBSITES with QTP.pls reply me as early as possible.
    thanx
    sandeepk.sharma

    #179 mahade teli on 10.15.08 at 8:34 am

    Hi, i have doubt likehow to handle the dynamically changing image in QTP, and how to identify in a function or in a action the check point is added or not?

    please let me know the answer

    #180 ravi aruva on 10.15.08 at 5:46 pm

    please any one will send me 3 or 4 testing projects

    #181 chandana on 10.16.08 at 4:41 am

    i hav little knowladge in qtp,can u tell me the site where online demo possible.and which institute is good in delhi

    #182 Siddesh on 10.17.08 at 7:27 am

    can any body send me the code to zip result using vb script

    #183 raghavendra on 10.22.08 at 8:45 am

    please tell me about database check point

    #184 srinivas on 10.25.08 at 8:55 am

    i have littknowlege in qtp, kindly full prove full notes on qtp from basic knowledge
    thanking you

    #185 Tharak on 10.27.08 at 6:25 am

    Hi,
    How to Connect QTP with QC.

    #186 Tharak on 10.27.08 at 6:27 am

    Can you pl mail me to this ids
    tharak.n@hotmail.com/gmail.com

    #187 Bindu on 10.27.08 at 7:06 pm

    Hello Everyone

    I had 2 years of experience in Automation Testing. After that I moved to USA, currently I am free and like to explore more in Software testing. Can anyone suggest, which type of testing is better to get more opportunities.

    Thanks
    Bindu

    #188 kishore on 10.29.08 at 3:27 pm

    To bindhu
    Did u have notes for the automation testing.

    #189 koolharrys on 11.04.08 at 12:26 pm

    hi..i want to learn QTP …will anybody plzz provide a guide line for it….

    #190 k.n.veena on 11.06.08 at 9:58 am

    Hi
    Do anyone have Software testing Notes?
    If Yes,plz forward to my mail id:: princemahi.a10@gmail.com

    #191 sheetal karta on 11.10.08 at 6:44 am

    Could please email me QTP Automation Frame work.
    My Email id: sheetal567@gmail.com

    Thanks in advance.

    #192 soumen on 11.13.08 at 1:14 pm

    Hi sheetal,

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

    #193 amita on 11.14.08 at 9:12 am

    could you pls send me the QTP automation framework to ami_2081@yahoo.co.in

    #194 potula on 11.29.08 at 6:57 am

    i am new to qtp please send the complete material of testingtools with examples and diagrams.or suggest me any link to know better in testing tools
    thankyou

    #195 Dheeraj on 12.03.08 at 5:32 am

    Nice information related to QTP but can we test web application performance in QTP?

    #196 prashant on 12.08.08 at 8:58 am

    How to design the automation framework?Please explain the data driven framework.

    #197 Rama Subramanian on 12.10.08 at 2:18 pm

    Hi Sheetal Lamba ! I need your help on descriptive programing and some useful sites from where I can download qtp scripting & Automation frameworks

    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

    #198 bhavana on 12.11.08 at 9:51 am

    can any1 plz send me qtp automation frame work…..!!

    #199 bhavana on 12.11.08 at 9:52 am

    can any1 plz send me qtp automation frame work…..!!

    my mail id is bhavana_2342002@yahoo.co.in

    #200 Divs on 12.12.08 at 8:37 pm

    Hi! I’m just learning QTP .can anyone tell me any site where I can get/work on some sample projects so that I feel more confident and also get the concepts right.

    #201 Priya Moghe on 12.13.08 at 6:15 am

    Hi! I’m just learning QTP .can anyone tell me any site where I can get/work on some sample projects so that I feel more confident and also get the concepts right

    #202 karthik.k on 12.16.08 at 5:30 am

    hai friends , i need software testing notes and more
    information of software testing..

    #203 Syedali on 12.19.08 at 10:11 am

    Hai Frieds,

    I am new to testing , last 4 months i test the window application manualy , plaease send the free trial version automation tool or its link

    Advance thanks friends

    #204 Karunakaran on 12.21.08 at 3:21 pm

    Hi guys , Need Softwares for QTP and Load Runner . Can anyone help me to get it. please send me the link for downloading

    #205 Sekar on 12.23.08 at 3:42 am

    Hi Guys,

    Kindly go to HP website and download QTP 9.5 version. You will get 14 days demo licensce. You can use it for learning purpose, with limited access to ADD-INS

    #206 Ho Nguyen on 12.23.08 at 4:02 am

    How to run QTP scripts compatible with multi-browsers? Example: IE.xx, FF, Netscape…

    #207 pintu kumar on 12.30.08 at 12:51 pm

    hi,
    can u send me notes of winrunner & QTP and how to write good test case.if u have any sample of that could u send me in my mail.
    thanks
    pintu
    e-mail:-pintukumar33@gmail.com

    #208 Nancy wadhwa on 01.06.09 at 6:12 am

    Hi
    I want to download the QTP sofware on my system.Can you please provide that to me.
    Thanks !

    #209 vinoth on 01.06.09 at 1:07 pm

    Hi

    Can anyone send the site “Online demo QTP” ,
    I am very eager to know Learn QTP .

    #210 vinoth on 01.06.09 at 1:08 pm

    Hi

    Can anyone send the site “Online demo QTP” ,
    I am very eager to Learn QTP .

    #211 sheryl on 01.06.09 at 9:11 pm

    I want to download the QTP sofware on my system and know more about it.Can you please provide that to me.
    Thanks !

    #212 sheryl on 01.06.09 at 9:12 pm

    want to download the QTP sofware on my system and know more about it.Can you please provide that to me.can u send me notes of winrunner & QTP and how to write good test case.if u have any sample of that could u send me in my mail.

    Thanks !

    #213 vinoth on 01.07.09 at 5:13 am

    Hi Friends
    Can u Please give Information Regarding This
    I am in Chennai , I am interested in attending a coaching class for QTP tool in chennai. If somebody can help me, please provide your contact details.

    Also Provide there is any Training Centre Only Giving Training for QTP in Chennai.

    #214 vinoth on 01.07.09 at 5:14 am

    Can u Please give Information Regarding QTP Training:

    I am in Chennai , I am interested in attending a coaching class for QTP tool in chennai. If somebody can help me, please provide your contact details.

    Also Provide there is any Training Centre Only Giving Training for QTP in Chennai

    #215 vinoth on 01.07.09 at 5:15 am

    Can u Please give Information Regarding QTP Training:

    I am in Chennai , I am interested in attending a coaching class for QTP tool in chennai. If somebody can help me, please provide your contact details.

    Also Provide there is any Training Centre Only Giving Training for QTP in Chennai

    My Mail Id: prvelvinoth@gmail.com

    #216 sandeep on 01.08.09 at 8:57 am

    in chennai there is Mindq in Adyar.Kindly check you can learn QTP there.

    #217 sandeep on 01.08.09 at 9:18 am

    Hi Friends.I have a small issue with sessionID in QTP.Can tell me how to handle sessionId in QTP

    #218 Ritesh on 01.10.09 at 5:00 pm

    hi sheetal,
    why is hybrid frame-work preffered compared to keyword and data driven

    #219 Dibendu on 01.15.09 at 3:05 pm

    I am new to QTP testing,can anyone please let me know whether it’s possible to use the QTP for testing VBA application and if yes,can you suggest any tutorial site for the same.

    #220 Praveen on 01.20.09 at 2:38 pm

    hi sheetal

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

    my mail id is

    prvn_jangra@rediffmail.com

    #221 Saraswathi on 01.21.09 at 5:49 am

    hi,

    anyone say where can i download qtp trail version 8.2 (Flight Reservation Model) i just practice with my pc how can i download and install

    #222 ash on 01.21.09 at 3:02 pm

    can any1 provide me QTP objective question paper its urgent!!!!!!!!

    #223 swati on 01.29.09 at 10:55 am

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

    my mail id is
    deshpandeswatis@gmail.com.

    #224 swati on 01.29.09 at 10:56 am

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

    my mail id is
    deshpandeswatis@gmail.com.

    #225 Prem anand on 01.30.09 at 9:23 am

    Hi Frds,

    For QTP 9.0…,I want add-ins Support for QTP 9.0. .NET Windows, can you please help me in getting it,

    Or can you Mail me to premanand1508@gmail.com

    Thanking you,

    Cheers,
    Prem

    #226 Sen on 01.31.09 at 8:10 am

    Hello Sheethal
    can you pls send the automation frame work
    my e mail id is senmeopm@rediffmail.com

    Thanks
    Sen

    #227 VANIA CHANDRESH on 02.01.09 at 3:51 am

    Please give me information for the new QTP version. and can you pls send the automation frame work
    my e mail id is chandreshvania@yahoo.com, which site to free download QTP software…

    #228 Rahul on 02.02.09 at 9:29 am

    lstest is 9.5
    Framework is nothing which makes scritpting effort much eaiser by providing guidelines and ahve following property
    1>Usibility
    2>potability
    3>maintainability
    4>easy to track Test cases

    #229 Sakthivel on 02.04.09 at 6:53 am

    I am fresher in qtp. I want to learn every thing in qtp. Please provide me a correct way. Also by creating a .vbs file we can open qtp application without clicking its icon. How?

    #230 sushil on 02.05.09 at 5:59 am

    Hi Swati,

    There is different type of frameworks in QTP which type you have need ?

    Sushil

    #231 vanaja.K on 02.07.09 at 10:20 am

    Hi!i want to attend interview in QTP..but i dont know about qtp..how can i prepare well ?would u suggest me any good textbook

    #232 Sarica on 02.17.09 at 9:51 am

    Hi All,

    I am working as a manual tester in an MNC in Mumbai from the last one year.I wish to upgrade my knowlegde by entering the domain of Automation testing.I have had a small three days course on QTP 9.0.But that was not enough.I am not well versed with VB script.Kindly help me out if u all know any of the training institutes in Mumbai for QTP or should I join VB Script.Will that help?

    #233 Mehul Solanki on 02.20.09 at 6:06 am

    give me pdf or other file of QTP 9.2 for learn and execuite script

    #234 venu sukhavasi on 02.23.09 at 11:23 am

    Can any one please tell me how to apply Data Driven Automation Testing Approach (DATA) for any application?

    #235 RAMKUMAR.S on 02.24.09 at 12:56 pm

    Hi Friends,

    Need all your help in downloading free trial version of QTP for learning purpose.

    Also please let me know some tool which can be used for funtionality testing,free to download and easy to understand.

    Thanks & Regards
    Ramkumar.S

    #236 RAMKUMAR.S on 02.24.09 at 12:58 pm

    Hi Friends,

    Need all your help in downloading free trial version of QTP for learning purpose.

    Also please let me know some tool which can be used for funtionality testing,free to download and easy to understand.

    My Mail id is - maillpt@gmail.com

    Thanks & Regards
    Ramkumar.S

    #237 Ashish Dugal on 03.03.09 at 8:28 am

    mail me your resume if you have 4 to 5 yrs of experience in manual and automation testing (QTP)

    #238 Rahul on 03.03.09 at 1:11 pm

    @RAMKUMAR.S
    hey guys pls use google for all this search option..
    gud lck

    #239 Srinivas on 03.06.09 at 10:45 am

    Hi friends,

    hope everyone is good. Can anyone of you please send QTP 8.2 tutorial and basic concepts of VB script?

    #240 Srinivas on 03.06.09 at 10:52 am

    Hi friends,

    hope everyone is good. Can anyone of you please send QTP 8.2 tutorial and basic concepts of VB script to my mail id sreenu.318@gmail.com

    #241 Sree on 03.12.09 at 3:31 pm

    Hi,

    Can anyone of you plz send me QTP automation framework types with example scripts to my mail-id jsree05@yahoo.com

    Thanks in advance

    #242 Pankaj on 03.17.09 at 11:57 am

    hi frnds,
    plz, tell me how to merge script files in qtp.
    and bitmap checkpoint?
    plz send ans. on my mail.

    Thank you!

    #243 Wayne Sinclair on 03.18.09 at 12:54 pm

    Hi, did anyone manage to get more info on the Hybrid Automation Franework for QTP. Is so, please provide the details to wayne.sinclair@ilabquality.com.

    I am looking for the download of the Framework, as well as user guides, etc.

    #244 Asha on 03.25.09 at 12:33 pm

    Hello,
    I need to learn from Basic QTP tool for testing web application. Can you provide me the source to learn.

    #245 TestOptimal on 03.30.09 at 12:27 am

    Check out TestOptimal, it’s a model-based test automation and stress/load testing for web applications.

    Model-Driven Architecture is the future of software development and Model-Based Testing is a component of Model-Driven Architecture.

    #246 srikanth on 03.30.09 at 6:25 am

    tell me the ..how to apply the testing online certified exam

    #247 Vikram on 04.01.09 at 4:58 am

    I need to learn basics of QTP tool, can you please tell me the best and easiest way of learning it. I am working as a manual test engineer in a company, can you please help?

    #248 ABID on 04.01.09 at 6:22 am

    can any one help me to learn qtp advance lebel
    and load runner too.

    #249 Pramod on 04.01.09 at 9:13 am

    Can anyone tell me about descriptive programming in QTP. if any one have the material regarding dp please forward it to my e-mail id.

    #250 RAVNEET on 04.02.09 at 6:20 am

    HI. I HAVE A PROBLEM
    When i search for any character in a sub window of the application using a keyboard enter button rather than mouse click - its not working during Re -run the recorded test.

    #251 sailaja on 04.12.09 at 4:11 am

    Hi Sheetal,

    Please can you email me QTP Automation Frame work and descriptive programing article ,if not direct me to the any site where I can get some info about it.my emil address is sailajat2009@gmail.com

    Thanks

    #252 Ahamed on 04.17.09 at 9:40 am

    Hi all,

    Dear friends, i am working as a Trainee Test Engineer in company with 6 months exp. I have completed my B.E in CSE.I have been involed in manual testing and i am interested to learn Automation tools. so anyone can specify any appropriate institute to complete my Automation course with not much fee or any site that can help automation tools learning.

    Thanks in advance…………

    #253 Ahamed on 04.17.09 at 9:46 am

    Hi,

    As posted in my above coment, shall i continue with testing job or shall i jump to development side. Is their any scope for testing jobs in future bcoz myfriends use to say “NO FUTURE IN TESTING”… I am worried regarding this…

    Please suggest better option….

    #254 Ash on 04.18.09 at 4:24 pm

    Can any1 tell me wht is the method to use share object repository???

    #255 Soundari on 04.28.09 at 6:47 am

    Hello,
    I am new to QTP. I need to learn from Basic QTP tool for testing web application. Can anyone provide me the source to learn.
    My email ID:baskar.soundari@gmail.com

    #256 girish on 05.08.09 at 6:04 am

    Can any one share how to start the framework with an example. It would be better for me to learn the QTp along with framework.

    #257 girish on 05.08.09 at 6:05 am

    My e-mail id is girish.nayakar25@gmail.com

    #258 girish on 05.08.09 at 6:09 am

    Or send me to my company id girish.nayakar@honeywell.com

    #259 ugandhar on 05.12.09 at 9:25 am

    can any one send me the Qtp frame work
    to
    tugandhar@gmail.com

    #260 sanju on 05.19.09 at 5:58 am

    how to develop and use QTP scripts in a team environment

    #261 Robert Nadar on 05.19.09 at 3:23 pm

    Hello
    I know about QTP automation Tools…i want to know any certified for this QTP.just forward the details to my mail id.

    #262 Abhishek Jaiswal on 05.20.09 at 9:18 am

    Hello Sheethal

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

    #263 Abhishek Jaiswal on 05.20.09 at 9:24 am

    Hi All
    I want to learn QTP can anyone send me ebook for how to automate Java based system using QTP.
    Please it will be great help
    Here is my email id “jaiswalabhishek22@gmail.com”
    Thanks

    #264 Rakesh on 05.28.09 at 12:30 pm

    Can anyone give me the website for QTP testin tool learing online..??

    #265 Rahul on 06.10.09 at 11:00 am

    can anyone tell me where i download free qtp

    #266 AV on 06.17.09 at 9:53 am

    pls share the QTP related books, framework,practical solutions for the problems, scripts. My id is abhaymvyas@gmail.com

    #267 Richa Singh on 06.20.09 at 6:57 am

    I am new to testing. I am interested in learning QTP..
    Pls guide me how to start and how
    to use QTP in live projects.
    Thanks in advance.

    Send me on richa.singh.mn@gmail.com

    #268 Richa Singh on 06.20.09 at 6:59 am

    I am new to Automated testing. I am interested in learning QTP..
    Pls guide me how to start and how
    to use QTP in live projects. As I know the bookish thing through help file .
    Thanks in advance.

    Send me on richa.singh.mn@gmail.com

    #269 Tareq on 06.24.09 at 7:01 pm

    Hi All,
    If i have to create QTP scripts for multiple applications hosted in single website, what would be the best practice of creating script? should i create each apps as a separate actions or create all apps in one action?
    Can any one give me new suggestion and pros and cons for each option? Please send your reply to tareq0@coolgoose.com
    I appreciate your help in advance.
    thanks
    Tareq

    #270 raghu on 06.25.09 at 11:02 am

    can someone pass on the information about Automation framework.How to create, add?

    #271 raghu on 06.25.09 at 11:04 am

    can someone pass on the information about Automation framework.How to create, add?

    My email id is raghurk4@gmail.com

    #272 sachin on 07.01.09 at 5:27 am

    Whats the diff. in VB scripting & DP in QTP?

    #273 VijayD on 07.02.09 at 9:19 pm

    Hey Guys,

    I’m back again, its been quite long time posting articles here. I am glad if I can help you guys.

    #274 salim on 07.03.09 at 5:23 am

    Hi vijay,

    Please open a blog posting for load runner also

    jobssalim@gmail.com

    #275 Priyam on 07.08.09 at 12:52 pm

    Anybody would like to know about frameworks(QTP,Selenium,Test Partner, Load runner……) or looking for jobs please mail me

    #276 Priyam on 07.08.09 at 12:52 pm

    Anybody would like to know about frameworks(QTP,Selenium,Test Partner, Load runner……) or looking for jobs please mail me qaprofiles81@rediffmail.com

    #277 salim on 07.09.09 at 11:40 am

    Any body want to share knowledege about load runner please ping me jobssalim@gmail.com

    #278 Basheer Ahamed on 07.10.09 at 9:42 am

    Hi,

    I have 4.9 yrs of Exp in software Testing Both manual nad Automation.pls recommend any website for Testing Oppurtuties in overseas.

    Regards
    Basheer ahamed

    #279 Basheer on 07.10.09 at 10:01 am

    @ basheer contact me jobssalim@gmail.com if you are from whitehouse

    #280 nancy wadhwa on 07.16.09 at 10:33 am

    Hi,

    I need to download a latest version of QTP on my system.Can anyone help me from where i can download.

    #281 jeby james on 07.16.09 at 12:41 pm

    Hi,
    I am jeby a graduate from Ireland ,Dublin.I completed my masters in computing .looking for a job …I am interested in testing I do have almost 2 years experiance in testing and project life cycle too

    #282 Prasad on 07.23.09 at 9:33 am

    Can any one share how to start the framework with an example. It would be better for me to learn the QTp along with framework.

    #283 Renu on 07.29.09 at 9:50 pm

    Hi,
    I guess everyone knows the Flights application that comes with QTP.i provide the value “mercury” in the Password edit box.Now,I want to read this value back from the Password edit box.Ideally,I would use GetROProperty(”text”) or “value” to get it but when I used the ObjectSpy,I discovered that the “text” property is empty.None of the properties have the value “mercury” for me to retrieve it.
    Please help me out.

    #284 Raju on 07.30.09 at 4:19 am

    Hi Priyam,

    Can you pls send the frame work for QTP,Selenium,Test Partner, Load runner……)

    Regards,
    Raju

    #285 Ismail on 08.05.09 at 1:18 pm

    Hi Priyam,

    Can you pls send the frame work for QTP,Selenium,Test Partner, Load runner……)

    Regards,
    Ismail

    #286 divya on 08.05.09 at 9:17 pm

    could you please send me the frame work for learning QTP? thanks
    divya

    #287 vinoth on 08.06.09 at 5:49 am

    Hi Sheetal ,

    Can you please mail me the QTP framework model and descriptive programming with Sample Examples …

    #288 vinoth on 08.06.09 at 5:50 am

    Hi Sheetal ,

    could you please mail me the QTP framework model and descriptive programming with Sample Examples …

    My Mail ID : prvelvinoth@gmail.com

    #289 Mallikarjun.G on 08.06.09 at 5:53 am

    Hello Divya, For ur request
    Here I’m sending the frame work of QTP.This is the way to prepare framework.I explained here with a Login form
    Frame Work : Frame work is a Generic work designed by an expert and followed by many people to perform a particular task in an effective , efficient and optimized way.

    Types of Frame work:-

    1. Linear / Sequential Frame work
    2. Modular frame work
    3. Keyword Driven frame work
    4. Hybrid frame work

    1. Linear Frame work: This is a general and old frame work that can be used by many people.
    Steps to follow ….
    a). Generate the Basic Test
    b). Enhance the test
    c). Debug the test
    d). Execute the test
    e). Analyze the result

    AUT

    Example : Login
    ——
    ——-
    Insert Order
    —–
    —–
    Open Order
    —–
    —–
    Log out

    Tasks: Login
    Insert order
    Open existing order
    Logout
    Note: Here all the tasks are put together in one test pane and done the job

    Put the tool under recoding mode
    Open flight application
    Login with username and password
    Click on OK
    Insert an order by keying all the required info therein
    Click on insert order button
    That order will be inserted successfully. After inserting the order
    Open existing order by clicking on open folder icon
    A open order window will appear, check the order number check box
    Input the existing order number ( say 9)
    Click on OK
    The order will open, if necessary you may update / delete the opened order
    Logout will be done by going to menu bar of the application and select file , select exit .
    The application will close
    Stop recording
    Run the test
    Analyze the result
    If u dont understand abt this, ask me again.

    #290 Roy on 08.19.09 at 10:08 am

    Hello Vinoth and others,

    Please share your email IDs also so that you can get appropriate response in your email ids..

    If anybody wants a guidance on QTP framework, do share your email IDs here. I will help them.

    Regards,
    Roy

    #291 vinoth on 08.19.09 at 11:27 am

    Hi Roy ,

    I need your guidance on QTP Framework .

    I need guidance on QTP Scripts can u send the sample scripts if any ( or ) tell any reference links .

    kindly update my mailID : prvelvinoth@gmail.com

    #292 Soumen on 08.19.09 at 11:41 am

    Hi Roy ,

    I need your guidance on QTP Framework .

    I need your help on how to develop the QTP Frameworks and work with them.

    My emailID is : csoumen@gmail.com

    #293 nancy on 08.19.09 at 12:19 pm

    Hi Roy,

    I’ve already read a lot about Smart Identification property. But I did not found anything that really help me.
    Can you please explain where we use Smart Identification property with practical example.
    I am fed up with the same definitions about this everywhere.
    Would be great if you can clear out this confusion.
    My emailId is : nancy.wadhwa7@gmail.com

    #294 surya on 08.21.09 at 9:52 am

    Hi ,

    could you please mail me the QTP framework model and descriptive programming with Sample Examples …

    My Mail ID : v.surya534@gmail.com

    #295 balaji on 08.28.09 at 6:44 am

    how to use the qtp in testing webapplication can any one guide me please

    #296 Raghav on 09.05.09 at 10:36 am

    Hi All,

    We have an immediate opening for QTP Architect with 3+years of Architectural Experience in QTP. If you know anyone who fits in this requirement please mail across their profile to raghav81@gmail.com.

    The opening is for Sensiple Software Solutions in Chennai.

    JD of QTP Architect Profile

    ” Developing business scenarios from user stories or use cases.
    ” Creation of automation framework using QTP.
    ” Developing automation framework and automation scripts for AJAX Web applications using QTP.
    ” Database-SQL Server/Oracle/MySQL
    ” Understand product / application features / requirements and define Test Strategy, Test Plan business scenarios and get signoff from clients
    ” For automation / performance testing projects
    ” Create design for developing automation framework.
    Qlfn: B.E/M.C.A
    Exp: 3+years of exp

    P.S: Please forward this requirement to as many people as you can. Salary is not a constrain for the right candidate.

    Regards,
    ~Raghav V
    HR

    #297 Ramalingam on 09.14.09 at 7:49 am

    Hi
    please let me know where i can find the trial version of QTP

    #298 arthi on 09.24.09 at 2:47 pm

    pls let me know the trial version of qtp?

    #299 nithya on 10.21.09 at 4:41 pm

    am into test automation…am in training stage…i have been in functional testing for quite some time…am not good at programming..is it vital for Test automation…?if so wat all should i expertise at?

    #300 Govardhan Reddy M on 10.22.09 at 6:11 am

    Dear Ms.Nithya (#299),
    Good to listen that, You stepped in to automation.
    Why programming knowledge is required?
    No, Its not required at all for automation.
    Of course, It required, But not very much. Just very basics of what is what. That’s it.

    Tool generates the script, Just based on the requirement, We have to modify the script (very minor changes). Just least bother about programming skills Nithya. Okay?

    Just try to gain as much knowledge as possible on the tool that you are learning now. That is more enough to rock. Even there is no need to make efficient use of the all available tool features for the projects. Means.. not required for some projects.

    Good luck.

    Regards,
    Govardhan Reddy M,
    Software Test Engineer,
    “Read more books than you did last year”.

    #301 Kalyan on 10.23.09 at 10:46 am

    Please provide name of some good books on QTP

    #302 Prem on 10.23.09 at 11:06 am

    1)Can i no how many companies using QTP Automated tool in software Industry.

    2)can any one sent me QTP, Testing and VB script materials to my mail id.

    Mail id:- premanand1508@gmail.com

    thnks in advance.

    Cheers,
    Prem

    #303 Prem on 10.23.09 at 11:10 am

    1)Can i no how many companies using QTP Automated tool in software Industry.

    2)Sent me QTP, Testing and VB script materials to my mail id.

    Mail id:- premanand1508@gmail.com

    thnks in advance.

    Cheers,
    Prem

    #304 Mohankumar on 10.28.09 at 8:57 am

    Hi all,

    Iam into manual testing now. Can anyone let me know how to start the QTP learning process. Is there anything that i should concentrate in particular.

    Thanks,
    N. Mohan kumar

    #305 Mohana Priyadharshini S on 11.06.09 at 10:19 am

    Hi Roy,
    It would be great if you could help me out to learn QTP frameworks and descriptive programming.Kindly send the materials to mohana.vsk@gmail.com

    Thanks in advance,
    Mohana Priyadharshini S

    #306 Tiger2k on 11.07.09 at 8:07 am

    Dear Prem, Mohan Kumar
    Prem, You cannot get a exact no of companies which uses QTP. It depends on project basis. moreover that information is not going to help us. well if your question if to know whether qtp is a much sorted tool in testing industry. well as per my exprience. the yes.

    Mohan Kumar: To start with qtp, i suggest u to first download a trail version of qtp which is available in hp website. loads of study material are available on the net. qtp user manual is excellent u can go through that as well.

    Regards,
    Tiger2k
    lonegladiator@gmail.com

    #307 Raj on 11.14.09 at 12:20 pm

    Hi,

    I am new to QTP,Colud any one plz send me the pdf for learinng and also the QTP certification syllabus?

    Looking forward for your help

    Mail:Rajeshk27@gmail.com
    Thanks!

    #308 Tanzeem Akhtar on 11.19.09 at 3:04 pm

    Impeccable collection of some beutiful queries on QTP.
    Thanks for sharing this ultimate collection.

    #309 chandu on 12.01.09 at 7:04 am

    Hey can anybody send be QTP material, QTP Scripts, Qtp Questions, please waiting for it

    #310 Piyush on 12.04.09 at 7:21 am

    HI…
    To Everyone
    It would be great if you could help me out to learn QTP frameworks and descriptive programming.Kindly send the materials to…
    help me

    #311 Piyush on 12.04.09 at 8:27 am

    I am new to QTP,Colud any one plz send me the pdf for learinng and also the QTP certification syllabus?

    Looking forward for your help

    #312 Pranesh on 12.09.09 at 4:48 pm

    Can u plz share the QTP framework with me.
    Plz do guide me as i am new to QTP.

    #313 Poulami on 01.11.10 at 11:59 am

    Please sned me the doc of qtp automation framework

    #314 Santosh on 01.11.10 at 12:31 pm

    HI paulami,

    Yu can always refer to the site www.learnqtp.com.

    Santosh
    TCS

    #315 honey on 01.12.10 at 8:34 am

    can you help me out in how to prepare a test cases in manual testing!

    #316 Santosh on 01.12.10 at 9:28 am

    Hi honey,

    U can send me mail directly to santoshlal.padhi@tcs.com. I ll certainly help u out :)

    #317 jack on 01.22.10 at 9:39 am

    hi guys….

    can any one explain clearly about automation.. with qtp and winrunner…
    it will be helpfull for me
    thank you.
    jacks_424@yahoo.com

    #318 Sreevani S on 01.25.10 at 11:30 am

    Hi All,

    I want to shift my career to Testing.
    I’m doing a course in Testing Tools. Can any body help me in writing test cases for Automation testing?

    Please share the QTP framework document..

    sekharsreevani@gmail.com

    #319 shona on 01.30.10 at 9:28 pm

    Hi,
    I am new to QTP.
    I am facing problem while using getROproperty, it is not working with my self written script.while hen i use it with recorded script it worked.
    is so that this property does not work with self written script as no screens present in active screen place.

    #320 shona on 01.31.10 at 8:34 pm

    please send me the QTP automation frame work.
    I want to write script for web appliation.can anyone send me some examples of web scripts for help.
    my email id is baz_masood@yahoo.com

    #321 indira jyoti on 02.01.10 at 6:24 am

    Hi
    Please send the advanced ISTQB if any avalible.

    Regards
    Jyoti

    #322 Raghu on 02.01.10 at 9:03 am

    Jyothi could you send me a test mail …. i will ewd you the ISTQB …books

    sai.nmk@gmail.com

    #323 Rajkumar on 02.02.10 at 7:29 am

    can any buddy send me automation fram work document…
    rajkagrawal@gmail.com

    #324 Rachana on 02.05.10 at 7:34 am

    Hi,
    I am trying to purchase the book on QTP. Can any body plz sujjest me which author is good.Can any body send QTP questions to my mail ID rachana.reddy18@gmail.com,
    Thanks in Advance

    #325 ashwini on 02.06.10 at 6:29 am

    Hey i done my software testing course, i know only few basics of QTP, i dnt know QTP frame work…so plz anybody guide me which book i have to refer for qtp frame work…?

    #326 Ramesh K on 02.08.10 at 8:50 am

    I preferred training with TestLeaf. I am happy about their coaching and placement support.

    #327 devi on 02.08.10 at 7:38 pm

    hi,
    My name is Devi.Tomorrow I have QTP interview for QA position.In fact i have less knowledge about QTP Following are questions,which they are going to ask me.

    Types of frameworks I worked on.
    How do you improve QTP scripting?
    Do you enable smart Identification?
    Did you ever worked using DB as repository?
    Error Handling, Exceptions
    How do you handle Special characters?
    User defined functions?
    How do you find the length of the string?
    Object Spy?
    Virtual Object
    Test Results in QTP
    QC
    Reports in QC
    Did you gave any presentations on framework
    Experience in Onsite-Offshore model.

    plz do reply to arialdevi@gmail.com

    #328 eesan652@hotmail.com on 02.09.10 at 6:18 am

    hi devi,

    pls share the interview exp

    #329 Sundus on 02.10.10 at 9:25 am

    CAn anybody guide me on QTP Framework .I am new in automation .But have 4.5 years of exp in manual testing.

    #330 gayathri on 02.11.10 at 6:51 pm

    how much can we pay for online qtp course

    #331 Harsha on 02.14.10 at 4:13 pm

    Where i can get information on QTP?

    #332 Harsha on 02.14.10 at 4:15 pm

    Hii ,can u tell me how is the market for QTP

    #333 M Rajaram on 02.16.10 at 5:49 pm

    hi fellow mates,
    I’m planning to learn automation testing tools like loadrunner,QTP..etc. can someone inform me about training institutes in mumbai providing these courses.. i searched in google but couldn’t find any helpful info..waitin for replies.. :)

    #334 M Rajaram on 02.16.10 at 5:51 pm

    please mailto:madaswamy.r@tcs.com

    #335 satya on 02.19.10 at 4:38 am

    now i am working manual testing .please any one send me automation tools Like QTP ,WIN and Load runner materials and if any one trained on automation please forward his/her details .i am in hyderabad

    #336 satya on 02.19.10 at 4:43 am

    satyabonthu@gmail.com

    #337 Aishwarya on 03.08.10 at 7:11 am

    mail me copy of QTP automation

    my mail id is aishwarya.koche@gmail.com

    #338 prasu on 03.08.10 at 9:49 am

    plz when i give the questions without answers and with options like that we want becaz we will test ourself and then display the answers ok na
    thankyou giving opportunity its a good u r asking the comments

    #339 Javeed Sayyed on 03.11.10 at 7:46 am

    Its good RajaRam you are showing intrest in Automation but I feel go for only one tool as QTP & Load Runner are completly different thing in the form of Testing.
    So better be a master in one tool…
    If you are intrested in LR then you need to concentrate on Stasticts like Mean, Deviation & All.
    So for every different tool you should have its usage knowledge and if you are intrested in that field then try become a master…

    #340 satya on 03.11.10 at 8:01 am

    Dear Friends
    i am working on manual testing.i want learn automation.actually i don’t have time in working days.if any one training on autmation in weekend letme know.i can learn please
    satya
    satyabonthu@gmail.com
    09849757045

    #341 satya on 03.11.10 at 9:35 am

    sorry i didn’t mention my location in previous post.
    i am staying in hyderabad
    satya

    #342 Hanureddy on 03.11.10 at 12:41 pm

    Hi All
    We plan to implement qtp kindly help me in implemeting with frame work .. how to proceed some steps

    Thanks
    Hanu

    Leave a Comment