A web Page has a webtable with four columns and four rows.
The first column is of ID and has values of 100,100A,A100,100y
Find out the number of rows whose ID starts with 100.
Similarly the last column is 'number of links'. Each row in
the last column has values like link1,link2,link3 etc
Find out the number of links where id is 100
Answer Posted / sagar jadhav
set objWT = Browser("micclass:=Browser").Page
("micclass:=Page").Webtable("html id:=xxxx")
rowCount = objWT.Rowcount
Dim Pass
For i = 2 to objWT 'As row#1 is always a column
num = objWT.GetCellData(i,1)
numCheck = mid(num,1,3)
If strComp(numCheck, "100", 1) = 0 Then
Pass = Pass + 1
End If
Next
msgbox "Number of expected Rows:" &Pass
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
what is keyword driven testing in qtp?n how is it useful?
In what occasion we can specify global sheet and action sheet?
what is the difference between rational rose and QTP? WHICH TOOL IS BETTER TO LEARN? PLEASE SEND ME AT sana_50218@yahoo.com sandeep@epuratech.com
How do you send email with attachment from outlook using qtp ?
What are the different types of recovery operation?
what are the challenges you have faced while testing web based application using the automation tools ?
Hi frnds, does anybody know if there is anything called "thin point" or something in qtp? thanks in advance.
Whar are the challenges do we face while testing web based applications using the automation tool QTP or any??
Hi! Using Descriptive Programming How do we get Parent object for an object by writing script(DP). Say, i want to get a parent object for a "Link" in a web page by writing script in Descriptive Programming.
how to create flat file datasubmission in qtp
What are the advantages of parameterization ?
What is synchronization? What are the ways you can synchronize?
How to create runtime property for an object?
please give me the code for doing retesting of gmail login page using functions so the function has to give the value
How is the Bitmap checkpoint different from Image checkpoint?