0% found this document useful (0 votes)
50 views

Finding Any WebObject in The Datatable

Uploaded by

api-3817447
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
50 views

Finding Any WebObject in The Datatable

Uploaded by

api-3817447
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 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