05-23-2009, 10:21 AM
HI,
Try with below steps :
step1: Get the rowcount of the Webtable into a variable.(say 'rc')
step2: Use the 'For' Loop & get the required cell data into Variable(say 'linkval')
step3: check the link name is not equal to +0/0(0%) & then click on that link.
Ex:
Try with below steps :
step1: Get the rowcount of the Webtable into a variable.(say 'rc')
step2: Use the 'For' Loop & get the required cell data into Variable(say 'linkval')
step3: check the link name is not equal to +0/0(0%) & then click on that link.
Ex:
Code:
rc=browser(..).page(..).webtable(..).rowcount
for i=1 to rc
linkvall=browser(..).page(..).webtable(..).getcelldata(i,3)
if linkval<> "+0/0(0%)" then
browser(..).page(..).webtable(..).childitem(i,3,"Link",0).click
end if
next