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.


Twitter
Facebook
RSS
Buzz
373 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.com/category/cookie-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/71379877/Quicktest_Professional_v9.2.part1.rar
http://rapidshare.com/files/71389900/Quicktest_Professional_v9.2.part2.rar
http://rapidshare.com/files/71423634/Quicktest_Professional_v9.2.part3.rar
http://rapidshare.com/files/71300660/Quicktest_Professional_v9.2.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.com/2008/09/introduction-to-test-automation.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
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
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
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
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
please any one will send me 3 or 4 testing projects
i hav little knowladge in qtp,can u tell me the site where online demo possible.and which institute is good in delhi
can any body send me the code to zip result using vb script
please tell me about database check point
i have littknowlege in qtp, kindly full prove full notes on qtp from basic knowledge
thanking you
Hi,
How to Connect QTP with QC.
Can you pl mail me to this ids
tharak.n@hotmail.com/gmail.com
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
To bindhu
Did u have notes for the automation testing.
hi..i want to learn QTP …will anybody plzz provide a guide line for it….
Hi
Do anyone have Software testing Notes?
If Yes,plz forward to my mail id:: princemahi.a10@gmail.com
Could please email me QTP Automation Frame work.
My Email id: sheetal567@gmail.com
Thanks in advance.
Hi sheetal,
could you pls send me the QTP automation framework to csoumen@gmail.com
could you pls send me the QTP automation framework to ami_2081@yahoo.co.in
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
Nice information related to QTP but can we test web application performance in QTP?
How to design the automation framework?Please explain the data driven framework.
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
can any1 plz send me qtp automation frame work…..!!
can any1 plz send me qtp automation frame work…..!!
my mail id is bhavana_2342002@yahoo.co.in
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.
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
hai friends , i need software testing notes and more
information of software testing..
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
Hi guys , Need Softwares for QTP and Load Runner . Can anyone help me to get it. please send me the link for downloading
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
How to run QTP scripts compatible with multi-browsers? Example: IE.xx, FF, Netscape…
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
Hi
I want to download the QTP sofware on my system.Can you please provide that to me.
Thanks !
Hi
Can anyone send the site “Online demo QTP” ,
I am very eager to know Learn QTP .
Hi
Can anyone send the site “Online demo QTP” ,
I am very eager to Learn QTP .
I want to download the QTP sofware on my system and know more about it.Can you please provide that to me.
Thanks !
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 !
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.
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
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
in chennai there is Mindq in Adyar.Kindly check you can learn QTP there.
Hi Friends.I have a small issue with sessionID in QTP.Can tell me how to handle sessionId in QTP
hi sheetal,
why is hybrid frame-work preffered compared to keyword and data driven
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.
hi sheetal
could you please mail me the QTP framework model and descriptive programming.
my mail id is
prvn_jangra@rediffmail.com
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
can any1 provide me QTP objective question paper its urgent!!!!!!!!
hi sheetal
Hi sheetal
could you please mail me the QTP framework model and descriptive programming.
my mail id is
deshpandeswatis@gmail.com.
Hi sheetal
could you please mail me the QTP framework model and descriptive programming.
my mail id is
deshpandeswatis@gmail.com.
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
Hello Sheethal
can you pls send the automation frame work
my e mail id is senmeopm@rediffmail.com
Thanks
Sen
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…
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
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?
Hi Swati,
There is different type of frameworks in QTP which type you have need ?
Sushil
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
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?
give me pdf or other file of QTP 9.2 for learn and execuite script
Can any one please tell me how to apply Data Driven Automation Testing Approach (DATA) for any application?
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
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
mail me your resume if you have 4 to 5 yrs of experience in manual and automation testing (QTP)
@RAMKUMAR.S
hey guys pls use google for all this search option..
gud lck
Hi friends,
hope everyone is good. Can anyone of you please send QTP 8.2 tutorial and basic concepts of VB script?
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
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
hi frnds,
plz, tell me how to merge script files in qtp.
and bitmap checkpoint?
plz send ans. on my mail.
Thank you!
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.
Hello,
I need to learn from Basic QTP tool for testing web application. Can you provide me the source to learn.
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.
tell me the ..how to apply the testing online certified exam
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?
can any one help me to learn qtp advance lebel
and load runner too.
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.
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.
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
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…………
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….
Can any1 tell me wht is the method to use share object repository???
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
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.
My e-mail id is girish.nayakar25@gmail.com
Or send me to my company id girish.nayakar@honeywell.com
can any one send me the Qtp frame work
to
tugandhar@gmail.com
how to develop and use QTP scripts in a team environment
Hello
I know about QTP automation Tools…i want to know any certified for this QTP.just forward the details to my mail id.
Hello Sheethal
can you pls send the automation frame work
my e mail id is jaiswalabhishek22@gmail.com
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
Can anyone give me the website for QTP testin tool learing online..??
can anyone tell me where i download free qtp
pls share the QTP related books, framework,practical solutions for the problems, scripts. My id is abhaymvyas@gmail.com
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
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
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
can someone pass on the information about Automation framework.How to create, add?
can someone pass on the information about Automation framework.How to create, add?
My email id is raghurk4@gmail.com
Whats the diff. in VB scripting & DP in QTP?
Hey Guys,
I’m back again, its been quite long time posting articles here. I am glad if I can help you guys.
Hi vijay,
Please open a blog posting for load runner also
jobssalim@gmail.com
Anybody would like to know about frameworks(QTP,Selenium,Test Partner, Load runner……) or looking for jobs please mail me
Anybody would like to know about frameworks(QTP,Selenium,Test Partner, Load runner……) or looking for jobs please mail me qaprofiles81@rediffmail.com
Any body want to share knowledege about load runner please ping me jobssalim@gmail.com
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
@ basheer contact me jobssalim@gmail.com if you are from whitehouse
Hi,
I need to download a latest version of QTP on my system.Can anyone help me from where i can download.
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
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.
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.
Hi Priyam,
Can you pls send the frame work for QTP,Selenium,Test Partner, Load runner……)
Regards,
Raju
Hi Priyam,
Can you pls send the frame work for QTP,Selenium,Test Partner, Load runner……)
Regards,
Ismail
could you please send me the frame work for learning QTP? thanks
divya
Hi Sheetal ,
Can you please mail me the QTP framework model and descriptive programming with Sample Examples …
Hi Sheetal ,
could you please mail me the QTP framework model and descriptive programming with Sample Examples …
My Mail ID : prvelvinoth@gmail.com
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.
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
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
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
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
Hi ,
could you please mail me the QTP framework model and descriptive programming with Sample Examples …
My Mail ID : v.surya534@gmail.com
how to use the qtp in testing webapplication can any one guide me please
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
Hi
please let me know where i can find the trial version of QTP
pls let me know the trial version of qtp?
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?
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”.
Please provide name of some good books on QTP
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
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
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
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
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
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!
Impeccable collection of some beutiful queries on QTP.
Thanks for sharing this ultimate collection.
Hey can anybody send be QTP material, QTP Scripts, Qtp Questions, please waiting for it
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
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
Can u plz share the QTP framework with me.
Plz do guide me as i am new to QTP.
Please sned me the doc of qtp automation framework
HI paulami,
Yu can always refer to the site http://www.learnqtp.com.
Santosh
TCS
can you help me out in how to prepare a test cases in manual testing!
Hi honey,
U can send me mail directly to santoshlal.padhi@tcs.com. I ll certainly help u out
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
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
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.
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
Hi
Please send the advanced ISTQB if any avalible.
Regards
Jyoti
Jyothi could you send me a test mail …. i will ewd you the ISTQB …books
sai.nmk@gmail.com
can any buddy send me automation fram work document…
rajkagrawal@gmail.com
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
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…?
I preferred training with TestLeaf. I am happy about their coaching and placement support.
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
hi devi,
pls share the interview exp
CAn anybody guide me on QTP Framework .I am new in automation .But have 4.5 years of exp in manual testing.
how much can we pay for online qtp course
Where i can get information on QTP?
Hii ,can u tell me how is the market for QTP
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..
please mailto:madaswamy.r@tcs.com
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
satyabonthu@gmail.com
mail me copy of QTP automation
my mail id is aishwarya.koche@gmail.com
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
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…
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
sorry i didn’t mention my location in previous post.
i am staying in hyderabad
satya
Hi All
We plan to implement qtp kindly help me in implemeting with frame work .. how to proceed some steps
Thanks
Hanu
The ques & ans were usefull…
Can any 1 update me oh How much in depth vb langauge i should know in order to be pro-efficient in coding QTP scripts..most of compaines are rjecting me when i tell them i am in middle level of scripting rater than Expert level…pls guide me and help me to know how should i learn scriting…………
Can any 1 update me oh How much in depth vb langauge i should know in order to be pro-efficient in coding QTP scripts..most of compaines are rjecting me when i tell them i am in middle level of scripting rater than Expert level…pls guide me and help me to know how should i learn scriting…………
Guys i faced one question, please answer on this.
If you record using QTP actions will get generated, how can we maintain the scrips folders generated in QTP for different test cases.
Guys i faced one question, please answer on this.
If you record using QTP actions will get generated, how can we maintain the scrips folders which generated in QTP for different test cases?
Maintaining the scrips means, he was interested in knowing as to how can we maintain folders which QTP generates using tools like (MS-Visual source Safe or Sub Version)
hi all,
i new to automation testing can any one help me get learn the things. Right now i m doing manual testing. but i well known about codes.
my mail id loversboy1d@gmail.com
thanks
Ripudaman Singh
Hi All,
I have exp. in VB development and Manual Testing but not in QTP. But now i am assigned the work in TestScript modular framework.
Can u all guide me over this in scripting.
My maild : PS_TPS@yahoo.co.in
hi,
I am fresher i am directly assigned into automation on qtp in insurance domain please kindly tell me how to leaern qtp
Hi,
I am new to QTP, please guide me how to start with QTP.
I have exp in manual testing on Web application.
Thank you
my e-mail mansikul@gmail.com
Hi,
I am new in QTP.Can you tell me please which site I prefer for QTP download and mercury download?
hi guy can any one send qtp basic tutorial and qtp’s tool fuction tutorial my mail id is vijayjeyaram@gmail.com
thank & regards,
vijay
hi,
anyone plz let me know how to prepare qtp certification and how to take up the exam. plz mail me to hemacv7@gmail.com
thank you,
jaya.
hey hi…..
Its nice bt need more information………..please provide more infarmation…………..
thnk u.
Asmita
I am also new to QTP.. trying to learn from net. I have knowledge in vbscript
i am balaji
i have 1.5 years of experience in manual tesing and i have basic knowledge on qtp, i am going to include qtp in my resume
but i do not know the vbscript, is it necessary to know the vbscript programming .
if i attend the interview will they ask questions in vbscript.
hi…………
i m safi i m MCA Student
i have good knowledge of Networking and diffrent kind of operating system like(Windows 2008, linux, Unix, etc)
know i want get certification in software testing
plz help me to understand and learn software testing
i m waiting for your replay
mob:- 9028316345
E-Mail:- Khan_sfiullah@rediff.com
What is keyword driven testing with respect to QTP?
As keyword driven testing is one of the features of QTP, I Just want to know what it is. Can you please explain this in detail?
Hello Sheetal,
could you please mail me the QTP framework model and descriptive programming.
- Yash
yashkiran@gmail.com
hai guys,
Anyone pls tell me ,how to prepare for interview
Hi,
Do anybady have loadrunner certification please send me the dums
if you have cleared.
Regards,
Ramana.
Why people waste time behind tools
They not tester . They are tool runner . It time consuming process
Hi
Could you pls pass some sample QTP scripts …
thanks
Prakash
Hi
Could you pls pass some sample QTP scripts …
My mail id prakash.setty@gmail.com
thanks
Prakash
hello friends
I am working on testing and i have 3+years exp in Manual testing, i want to learn automation testing so plz give me some idia about how i can start automation testing and which automation tools.
thanks
regards
ajay dubey
ajaydub@gmail.com
i want to do QTP 9.2 certification.. can anyone send me dumps of it to my mail. manisharmanish@gmail.com
hello Sheetal,
Please help me to automate a web based application.
MY email id is -> sukhijaboy@gmail.com
can anyone give a clear idea about the automation tool?
Hi,
Can anyone let me know the best resource to get the material for DP and one of the QTP framework?
My email is: anuj3149@gmail.com
Thanks
Anuj Garg
please forward some qtp scripts please
Hi,
I am currently working on Test Director 8.0. I just working from last one month can anybody tell in detail about Test Director Test Mgmt. Tool. I know more.
Thanks & Regards,
Amol
how to insert data in excel sheet in qtp eg. how to save the data(list of trains) of irctc website to excel sheet, cn any one plzz provide me the syntax
how to insert data in excel sheet in qtp eg. how to save the data(list of trains) of irctc website to excel sheet, can any one plzz provide me the syntax
Leave a Comment