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.



175 comments ↓
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.
How to test the cookies ?
nice article.Can you explain QTP automation framework.Which framework is used in your organization?
haridoss here is th link
http://www.softwaretestinghelp.....e-testing/
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
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
How to call Reusable action and shared OR into new script in QTP?
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.
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.
subash,
answer to your question is.after recording just run the test.
Highly informative. Can anyone share about the QTP Framework they follow.
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.
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
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.
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.
Hi Vijay,
Do you have any online demo on QTP?
I have received mail but Im not getting proper information regarding the certifaication coures in TESTING..pls help me.
Hello Hariprasad,
what information u need for certification courses.
Sekar,
Drop your email id i will email you info about QTP framework.
Hello sheetal…I want to do the certifaication course which helps me to be a good performer in testing …I just started now .Rgds
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
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
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
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.
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.
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
Hello Vinay & kapa,
i will post article on automation framework and about descriptive programming on website on weekend.
All the best,
Sheetal
what are the latest versions of qtp,testdirector,winrunner
hi sheetal can u mail the qtp framework model and descriptive programming help and problems
my e-mail id is anilbody@yahoo.com
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.
Hello Sheetal,
Please mail me about the automation framework using QTP.
my emailid: prabhushankar@gmail.com
Thanks
Prabhu
Hello Sheethal
can you pls send the automation frame work
my e mail id is nashok2000@yahoo.com
Hello Sheethal
I too need automation frame work pls send across
my e mail id is jayakrishnamohan@gmail.com
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.
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
Pls send me the automation framework
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.
hi
Hello Sheetal,
could you please mail me the QTP framework model and descriptive programming.
- Raj
rajukotha@yahoo.co.in
Could Any one expalain me what is Descriptive programming in QTP,and how it is usfull of testing purpose.
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
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
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
How can I run QTP nightly batch scripts while the computer is loked?
thats a great help.
good.
HI, Sheetal
this is Govardhan
pls send me which type of books are best for automatioon tools .
my Email: g.govardhan6@gmail.com
you can checkout in Quicktestprofessional blog. They too have some relevant reference.
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
Hello Sheetal,
could you please mail me the QTP framework model and descriptive programming.
my email id is: shettypvishal@gmail.com
what is the use of functions in qtp when can we use fuunctions in our build
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
Hi,
Can anyone tell me about automation framework using QTP.Please Email me
To
navithaalways@gmail.com
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.
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)
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 )
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.
what are the different testings we can do using QTP tool.plz mail me
getsreedhara@gmail.com
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
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
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..
hi buddy,
iam new to qtp can anybodier help me how we change the objects throgh object repositary contact me jobssalim@gmail.com
Can someone please send me the Sample QTP Certification Question and Answers.
my mail id is - vinny_verma2005@yahoo.com
Thanks in Advance.
hello…. i need QTP Framework Model….. please send to my mail id if any one have it d.sivarajan
hello…. i need QTP Framework Model….. please send to my mail id if any one have it d.sivarajan@gmail.com
I need to get certification in QTP. What are the procedures for writing this online exam ?
What is Key word driven testing ?
Plz Send me Detail For All
Thanks
what is the meaning of key word driven and data driven testing in QTP
thanks in advance
Hi..
Please mail me a copy of the QTP Automation Framework..@sujayrj@gmail.com
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
mail me copy of QTP automation
mail me copy of QTP automation
my mail id is rimanojkumar172@gmail.com
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.
Can any body tell me plz about realtime QTP Frame work….
Hi,
Anybody can send me the name of QTP books.
and notes on QTP.
URL from where i can download free trial version.
Samrendra
Hi
very good
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
can any one tell me from where , can i get QTP free download version
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?
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?
What is the use of the Action Tool bar in QTP Explain Briefly
which the object model the qtp uses for the object identification in an application?
where can i find complete syllabi of winrunner?
As a fresher if i do foundation level certification in testing in ISTQB,can i get a job out of it?
THIS IS GOOD .
CAN U EXPLAIN ABOUT THE QTP FRAME WORK CONCEPT .
Hello friends ,
Can you please send me some sample rational functional Tester material .
Thanks and Regards,
Vishnu
hi all
can anybody tell is there any difference between parametrizing and data driven test in automation
Thanks & regards
Thilak
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
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.
my email :fish_sr2005@yahoo.com
Very helpful
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
hi sheetal
could you please mail me the QTP framework model and descriptive programming.
my mail id is
sanjana_dec7@yahoo.com
Can any one send me the QTP Automation framework types to my mail id pls….
cjp_ind@yahoo.com
Thanks,
Jeya
Can anyone help me how to use Object repository in QTP 9.2? I am familior with QTP 8.0
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
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
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
Can anyone Pls send me some information and tell me how to create framework in QTP
preetysahay@gmail.com
Thanks in Advance
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.
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.
I need a practical example which includes all the concepts mentioned above.
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
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.
hello Sunny Kathuria
can u send 60 qtp qtns along with answers to hema_abcd@yahoo.com pls…..
Hi Sheetal,
could u tell the diff between loop and iteration
system testing & ene-to-end testing
black box testing & functional testing
Hi Sheetal,
what is functional testing
what is functiionality testing
hi
can any one tell me how to do validation testing in QTP
what is accesbilty checkpoint and were it is applied please tell me this information
please send me what is meant by qtp framework?
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
any one plz explain briefly about the parametarization and automation frame works and also test modes
thanks and regards
sagar
any one plz explain briefly about the test modes, automation frame work
thanks and regards
sagar
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
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
Anybodiers knows editing scripts in imacros
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
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
how to prepare data for QTP scripts. if fields accepts only alphabets( say for a huge no of iterations)
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
Hi sheetal,
can you pls send the automation frame work
my e mail id is srinivas_depa@yahoo.com
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
sorry, a web application….please mention if there r any books also??
im new to QTP.
please can any one tell me how many files are created while excuting the web application in QTP.
Dear All,
There are some testing software tools in the following path.
http://rapidshare.com/users/7NSHZZ/1
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
I have a few questions. Please answer me?
How to use framework?
Is it a seperate software? If so is it downloadable?
hi sheetal
could you please mail me the QTP framework model and descriptive programming.
my mail id is
sprao_1305@yahoo.co.in
hello Sunny Kathuria….
can u send 60 qtp qtns along with answers to my mail Id
sprao_1305@yahoo.co.in
How can i make a good help manual of an application software related to complete office automation.
Can anyone Pls send me some information and tell me how to create framework in QTP
hi this is kavitha from chennai can any bodiers send me
qtp or loadrunner video tutorial contact me capitaljun@gmail.com
Hi,
Could you please give an article about automation framework and frameworks that applies for QTP
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.
I am new to QTP , can anybody list out the imp. topics to be studied to clear QTP interview?
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.
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.
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?
hello sudesh i will give you sample web projects contact me: jobssalim@gmail.com
Can you please provide some information on the framework
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
Can anyone explain what is the use of function libraries in qtp eg:how we can change the functions,classes etc
what is the difference between Run time object method and test object method
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.
hello…. i need QTP Framework Model….. please send to my mail id if any one have it
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
how to get values frm datatable and input in the application?
should be generic i need logic and coding
any one help me
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.
Please give me some information on automation framework. Thanks..
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
hi sainipra,
plz send me book
Hi all,
Can anyone mail me syllabus for QTP certification?
kindly use below id
kishoresharma1@gmail.com
Thanks
Hi all
Can any one tell me, is it necessary to have the knowledge of SQL server for a tester.
Hi I need Qtp Frame work model.Can anyone send it to my mail id mail2leelav@yahoo.com
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
plz mail me to krishnarajesh.btech@gmail.com
Hi sheetal,
could you pls send me the QTP automation framework to manimarant@gmail.com
-mani
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
hi this is santosh, i am working in mumbai as a software test engineer.
i would like to discuss with qtp 8.2.
Hi,
Please give me info about some of the good and affordable software testing institutes in bangalore for automation and scripting.
please provide me some basic concepts of vb script so that i can make use in learning QTP.
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
@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
Hii
QTP testing is the web base and GUI base testing possible?
Can any one tell me,best qtp traing centre in noida. is it necessary to have the knowledge of SQL server for a tester.
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..
I need to get certification in QTP. What are the procedures for writing this online exam ?
I would like to have automation script to test Login page of website http://VietBDS.com
Pls help!
Thanks
hi,
pls let me know whot is the use of “new library function” under the file ,even we can create library function seperately
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
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
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.
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…
Could you please mail me the QTP framework model and descriptive programming material that everyone has requested at rajani66@optonline.net
Leave a Comment