in my database haveing 3X3 (manas having 3 rows 3 colums) i
want to test only (2nd row 3colum) bit how to test either
script or any automation plz explain? (Chandana)
Answer Posted / sandip
hi,
use this query
select * from emp(table name) where rownum<=2;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How to analyzing the checpoint results?
What is the parameterization? Give one example?
For example you are checking bit map check point before coming to the results. How can you say it is passed? Or failed? Anyways?
What is difference between run time object and test object?
I want to do QTP Certification what is the pattern of Question paper.
assume i have few url link how will i dynamically call then using descriptive programming?
How to capture all the data of a webtable, weblist and combolist using QTP?
Explain how Does Run time data (Parameterization) is handled in QTP?
How many types of parameters are available in quicktest professional?
What are the recording modes in qtp?
How is the Bitmap checkpoint different from Image checkpoint?
Where can I find and view run-time data table?
How to test fly out menu in qtp?
Through array we can execute the testcase how ? give me example
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