1. How to capture data from images in QTP and produce them
in Excel sheet ?
2. What is Terminal Emulator add-in installation and
configuration procedure ?
3. Tell me how do u define action and transaction in QTP ?
4. Is QTP case sensitive ?
5. Problem with XML checkpoint ?
6. When was QTP 8.2 and Loadrunner 8.0 officially released
to the market ?
7. Can we record on netscape browser does it require any
special settings ?
8. How do I add new object to the object repository to any
particular frame ?
9. Do we have rapid test scrpit wizard in QTP ? How to learn
all the windows and objects in QTP
10. How to open Exceel sheet using QTP script ?
11. Is it necessary to learn VB script to work with QTP or
we can manage with keword driven ?
12. What is descriptive programming in QTP ?
13. How to invoke the QTP from dos prompt and run a test
without any interaction with human ?
14. What is the meaning of Context sensitive ?
15. How to retrive the property values from "Resource.mtr"
after recording the script with "Standard checkpoints" ?
16. Where should we use accessbility checkpoints. Can u
explain me with the example ?
17. How do we add object repository dynamically ? (During
runtime)
18. How to record right click of a context menu and click on
the selection ?
19. How to connect oracle database to QTP ?
20. How will you load few objects in Active Screen ?
21. Can I compare two DataBases using QTP ?
22. If the the two object have same class then how QTP will
find the object ?
23. Can I change the runtime properties of an object ? How
can I check if a parameter exists in database ?
24. What is the script for database check point, bitmapchek
point, regular expression ?
25. What is QTP environmental variable ?
Answer Posted / venkat reddy
How to capture data from images in QTP and produce them
in Excel sheet ?
we can capture/get the text from image by using
getroproperty Method.
Ex:-if Browser("").Page("").image("").exist(5)then
taxt=Browser("").Page("").image("").getroproperty
("text/name")
end if
to produce them inexcel sheet we use a method called
filesystemobject (fso)
ex:-
dim fso,write
set fso=createobject("scripting.filesystemobject")
set write=fso.opentextfile("path",8(write),true)
write.writeline text
write.close
i think itwill work if it is wrong please let me know
reddyvenkt82@gmail.com
| Is This Answer Correct ? | 9 Yes | 21 No |
Post New Answer View All Answers
I am having major problems with some DB Table Checkpoints I add to my script. I 35 web based applications recorded and each has DB Table Checkpoints insert but only 1 script isn't recognizing the DB Table Checkpoints for some reason. I've checked the DB connections and the info in the Library Functions and still only this one script out of 35 doesn't recognize the DB Table Checkpoints. Can someone please help me figure out why only this one script out of 35 that's hitting the same database is having a problem.
Can anyone share/send me QTP 8.2 Crack as I had it before but now it's virus affected. Pls send me on Sawale.vijay@gmail.com Thanks, ~Vijay
when I was doing the web testing with QTP using with standard checkpoint the Object selection -checkpoint properties dialog box not displaying pages and links hierarchical order. Could you please tell me. thanks
Define Error Pane of UFT?
What are the technologies supported by qtp?
1--How many functions u develop 2--What is an array 3-- where is ur server 4--U involved in unit testing 5--how ur test the background colour using QTP
Explain the N-tire structure(process) for Funds Transfer ( means give N ways to funds Transfer in an Application)
Is there anyway to automatically update the Datasource name in Database Checkpoints object when we migrate tests to a new release?
what is review
what r the verstions from 1st to present (verstions) of mercury tools (like winrunner,QTP,Loadrunner) ? Chandana
What is regular expression?
Can you list some technologies that support qtp?
Explain more about the Test Fusion Report of QTP?
Both static and dynamic arrays are handled by the vb script. Is it true?
How to give a call to another action from one action?