Browser("Las Vegas Hotels - Las").Page("Vegas Hotels -
Hotels").Link("Luxor") ......here Luxor is a hotel and this
is recognised as a link. I have many hotels like Luxor,
Palms etc which are all displayed as link...How do I
parametrize this by using webtable functions??? ASAP
Answer Posted / amarendra kothuru
If you want to recognize, no of links like Luxor, then the
following code explain you how to perameterize it.
This is the query you are using to recognize Luxor.
Browser("Las Vegas Hotels - Las").Page("Vegas Hotels -
Hotels").Link("Luxor")
Using Descriptive programming and data Driven approach you
can Perameterize it
Create a column in Globalsheet as CityName and enter the
Citie names in it.
Code:
ExcelSheetRoiwCount = DataTable.GetSheet
("Global").GetRowCount
For var_i = 1 to ExcelSheetRoiwCount
DataTable.SetCurrentRow(var_i)
CityName = DataTable("CityName","Globalsheet")
Result = Browser("Las Vegas Hotels - Las").Page("Vegas
Hotels - Hotels").Link("name:=&CityName).Exist(1)
If Result = True Then
Reporter.ReportEvent micPass, "City name " & CityName
& "found", "Passed"
Else
Reporter.ReportEvent micFail, "City name " & CityName
& "not found", "Failed"
End If
Next
It above code verifies the city names you have specified in
Excel Globalsheet exist in the application as Links or not.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
breef description of batch testing ?
Is any limitation to xml checkpoints?
What are the methods of the TextStream object that are used for reading from a text file?
How to find operating system information using the qtp script?
What are the different ways to invoke an application using QTP?
What is contained in the object repository?
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
how to compare two bitmaps( 1. clients requirement & 2. Designed by dev) in qtp 8.2 wann clear steps
Will there be any standards or requirements for page appearance and/or graphics throughout a site or parts of a site?
hou can we use vb script in qtp could u tell me breafly
What should we say if interviewer asks "What is ur project architecture?".......Can any one help me with clear information.?????????
What is an object repository?
how to write xml output check point bu useing descriptive programing .means without useing output check point
how to download mercury qtp9.2 ny internet ?
Dear All , For UFT 12.02 which version QC or ALM will support ? Thanks Balaji