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 / 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 |
diff between qtp versions from 8.5
In QTP what is the difference between Step-in, Step-out, Step-over ?
write a script to validate the content in the web application. (do it by OR method) and (do it by Descriptive method by creating a description object..
What are the recording modes in wave event?
One build is delivered. in that build button name is submit. but in the next buit that name of the button changed as login.are u continue with previous recorded script or u make any changes?
If object is not recognized by qtp but the object is standard object what is your approach?
What is an optional step in qtp ?
What is the Difference between Environment variable and Globle variable,.. anybody can give me answer..Thanks in advance...
Consider one application is open, clicking one menu will open another application in another browser. QTP does not catch the URL of the second browser(second application). can we capture it ?
What is data driven testing in QTP?
what is the difference between Reusable action and external action?
can the activities of test case design be automated?