7. Given scenario is like this: One Web table is there
and you have to search and retrieve a cell data which is
equal to the given number say:123. Assume you have given
with the column name/id of the table where the number may
exist. So now you have to go to the given column and search
for the number 123 and retrieve it along with the row
number of it.
Answers were Sorted based on User's Feedback
Answer / balaji s
Vinay there is no need to go this much.we can directly
retrieve using getcelldata metho
row=Browser(..).Page(..).Webtable(..).Rowcount
column=Browser(..).Page(..).Webtable(..).columncount
For i=1 to row
for j=1 to column
val=Browser(..).Page(..).Webtable(..).getcelldata(i,j)
if val="123" then
msgbox "the row is "&i
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / mohan
I think we can get row number where text "123 " displayed By
using Get Row With Cell Text method
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / gangadhar reddy
row=Browser( ).Page( ).WebTable( ).GetRowWithCellText("123")
it will returns the Row Number in which the cell data is 123
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vinny
Hello,
For this scenario we can write in Descriptive program,
You need to create an object and get the total rows count in
the table. Check the below script.
Let say the "id numbers" in the "ID" column are links.
Dim i,j,k
Dim Numberofrows, Links, IDLink, Val
Set IDLink=description.Create()
IDLink("micclass").Value="Link"
IDLink("html tag").Value="INPUT"
IDLink("abs_x").Value=abs_xvalue "note: you can get the
abs_x value of the column and enter the value here"
Set
Links=Browser("micclass:=Browser").page("micclass:=Page").ChildObjects(IDLink)
Numberofrows = Links.Count()
Do While i<=Numberofrows-1
val=trim(Browser("micclass:=Browser").page("micclass:=Page").Link("html
tag:=INPUT","abs_x:="&abs_xvalue,"html
id:=TD","index:="&i).GetRoProperty("value")
if Val = "123" then
msgbox "the Value 123 is in the row:" &i+1
Exit Do
End if
i=i+1
Loop
| Is This Answer Correct ? | 0 Yes | 4 No |
Hi all please solve this.It is urgent..... When I right clicked on a Web image manually It displayed Open link,open link in new window,save picture as, Email picture,Printpicture,propeties...etc. While automation I have written a code like this 'browser("Google").Page("ramseeker®: Memory and_3").Image ("graphOfModel").Click 10,10,micRightBtn But the right click menu was not displayed. I want to save that image in a seperate folder
how to write the descriptive programming in QTP for remove the object value and substitute, with a variable then call the validation from excel
In smart identification, explain about 1. Base filter properties 2. optional filter properties with examples?
How to use Regular Expressions in QTP
Where we can use the analog mode and where we can use the low – level mode?
what is verification & validation?
How many types of OBJECTS are there in QTP?
8 Answers Intel, Inter Globe Technologies,
I want to do Certification course in QTP. For this I request you to suggest the best Tutorial in PDF format. Hence, if possible, kinldy mail PDF file to my mail-ID: sushmapokhriyal79@gmail.com
How do you learn the object in QTP?
in flight reservation application. when i entered flyto combobox as london. and i have to check this london is present in flyfrom combobox.give me the code with good explanation. extention to this question. at each iteration i have to put(WRITE) the fly from and fly to city in database table
Hi any body can tell me the synchranization point syntax thanks in advance
In where you are keeping or maintaining shared object repository (file)in your appliction?