1
Reply

How to count the number of objects present in a web page? How to count the number of radio buttons in a web page?

Sonia Sharma

Sonia Sharma

12y
1.3k
0
Reply


    Set a=Browser("creationtime:=0").page("micclass:=page").ChildObjects
    print a.count
    For i=0 to a.count-1
    print a(i).GetroProperty("text")&" "&a(i).getroproperty("micclass")

                OR

    set OPage=Browser("Index:=0").Page(":=").childobjects
    msgbox OPage.Count.