Forum Discussion

er_amitgupta198's avatar
er_amitgupta198
Occasional Contributor
11 years ago
Solved

GridList Checkbox

Dear All I am B.E. Student and also try to learn test complete tool as better way . I am facing some problem to click on Check box in given Grid list .If I found many check box in particular grid ...
  • Ravik's avatar
    11 years ago
    Dear,



    Try below code, it  may help you to find and Select check boxes



    Sub Test


    Set CheckBoxs = Sys.Browser("iexplore").Page("your URL").FindChild("ObjectType", "Checkbox", 300)



    For each checkbox in CheckBoxs



    checkbox.Click



    Next



    End Sub