Finding Any WebObject in The Datatable

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

'retrieving the row count value from web table

introwcount=browser(g_browser,g_brwtime1).page(g_page).frame(gfrm_financial_summar
y).webtable("index:=4").rowcount
'retrieving the colum count value from web table
intcolumncount=browser(g_browser,g_brwtime1).page(g_page).frame(gfrm_financial_sum
mary).webtable("index:=4").getroproperty("cols")

for j=1 to introwcount


for k=1 to intcolumncount

'searching for edit box for verification as all values as read only
numedit=
browser(g_browser,g_brwtime1).page(g_page).frame(gfrm_financial_summary).webtable(
"index:=4").childitemcount(1, 2, "webedit")
if numedit=0 then
booleanarray(3)="true"
end if
next
next

You might also like