In QTP if u got a defect , how to report to developer using
Test director or Quality center .
Answers were Sorted based on User's Feedback
Answer / aparna
There is an option for connecting Quality Center in QTP 9.2.
So u can connect QC to report the defects.Or else u can ask
Open Test Architecture concept where u will have to write
the script yourself
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / manas
In File Menu , there is a option Quality Center Connection .
Cleck there and enter the path ehere the Quality cer
installed. then click on connect. it will get connect.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / abc
There will be default option like send the defect
information to the respective people when u fill the defct
Details. Here just you need th click on the Respective
names.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / bfakruddin
If you have already connected with QC
We have an option 'Post Defect' in Results window
We can fill the required details and post there itself...
If you haven't connected with QC... Connect with QC first
then report the Defect from Results window..
or If you are running the scripts in QC itself the results
will store in QC... assign that defect to particular person
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / pradula
where that connect to QC option will be there in QTP???
| Is This Answer Correct ? | 1 Yes | 2 No |
When I parameterize a script then for each iteration script is executed from begining to end. If I want to execute some middle steps multiple times using Parameterization (avoiding begining and end steps), what is the solution of this (e.g. total steps are 1 2 3 4 5 and i want 2 3 4 only(not 1 nd 5)
What are the option you can use to synchronize your test?
What type of problems one will face with QTP , if too many browsers are opened at a time?
How to change the run-time value of a property for an object?
Write the script to delete the mail which is at 9th,13th and 18th place in INBOX of Gmail ?
How to record & run on Japanese language application using english version of QTP ???
On what basis we select test cases to automate?
how to i add the values using the check points property?( i.e valid data(for valid data it's giving the footer message:value is added) and for invalid data: special chars, spaces,Duplicates and null values (in my page when ever we enter special chars, spaces and null values, it's giving the proper warning message and for Duplicates it's giving the footer message:"value already exists)?
what is impact analysis on regression testing?
• What type of testing questions will be asked for 2+ yrs exp people in interview?
what is qtp automation frame work,what is the use of that frame work?
64 Answers Cap Gemini, IBM, iGate, TCS,
I have below user Defained function function AddTwo(ByVal a, ByVal b) Dim Ans Ans=a+b MsgBox Ans End function Now my question comes here...from given below methods which method is right to call above function?Which is Wrong and why? 1. AddTwo(2,4) 2. Call AddTwo(2,4) 3. AddTwo 2,4 4. Call AddTwo 2,4