rs
Answered On : Mar 5th, 2012
hi, i will tell my understanding not sure whether it is perfectly correct or not but i want to share.. u said u have say 50 rows in a webtable with no check boxes. first of all pls spy the rows or try to calculate the rowcount or add particular row to object repository so that u can see the index at the ordinal identifier level .. then based upon the index u write a logic to click the item.
Login to rate this answer.
kranthi
Answered On : Aug 15th, 2012
suppose we take yahoo site in yahoo site if u want 1st row 7th column data....like shown below:
write log in code first then click inbox then get the cell data
Code
with browser("title:=.*")
with .page("title:=.*")
nom=.webtable("name:=toggleall").getrowcount
for i=2 to nom step 1
x=.webtable("name:=toggleall").getcelldata(1,7)
msgbox(x)
here 1st row 7th column data
here "nom" is variable
i take total rows data in to "nom"
"x "also variable column data i take in to "x"
if u want clearly explain the question clearly plz..i wil explain u
Login to rate this answer.