How to capture data from images in QTP and produce them in
Excel sheet ? please ans...
Answers were Sorted based on User's Feedback
Answer / kumar
capture the Content from the image , this can't be done
using the QTP.
This is one of the QTP tool restrictions.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / azhar
Yes very right answer
You can only capture ALT text if provided.
Azhar Mehmood
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / pravati
text=Browser().page().image().getroproperty("alt")
msgbox text
set excel=createobject("excel.application")
excel.application.visible=true
excel.workbooks.open("path")
set mysheet=excel.Activeworkbook.worksheets("sheet2")
mysheet.cells(1,1)=text
excel.Quit
set excel=nothing
set mysheet=nothing
| Is This Answer Correct ? | 0 Yes | 0 No |
When testing a web application, the url for each page changes, so using QTP how do u handle this scenario. If anyone knows please answer in detail about the whole procedure. Thanks a lot.
how to write xml output check point bu useing descriptive programing .means without useing output check point
QTP script is not working on other's machine..
Explain types of output values?
I want to know what are QTP functons and what are VB script functions. What is the difference between them.When we have to use these functions.
whenever U using QTP,Test Director, Why we using separate Bug tracking tool?
what is Unicode Compatibility ? HOw does this makes a diffrence from Winrunner.?
How to remove associated function library?
Hi, I have 2 dropdown listboxes called region and city/area. It needs to select one region(Santa Clara) and one city/Area (Sunnyvale).So I put this in the for loop and I am storing the Items in the variable called itemname. The regions value will get changed,so I used reg expression for this regions. This is my code Browser("MLSListings.com").Page("MLSListings.com").Link("» County/Area").Click Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Check CheckPoint("regions") ListSize=Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetTOProperty("items count") For i = 1 To ListSize-1 Itemname =Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetItem(i+1) Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Select Itemname ................. If I run the script,I am getting the following error, Cannot identify the specified item of the regions object. Confirm that the specified item is included in the object's item collection. Any Help? Thank you, Uma
What is diff between SDLC AND STLC?
Discuss quicktest professional (qtp) environment?
During execution, how can we capture the data from the pop- up, ie. when any popup comes with some numbers written on it, then how can we capture the value/number that is coming on the pop-up and save in the dynamic file/or other file, even when the run is going on.