er_amitgupta198
11 years agoOccasional Contributor
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 ...
- 11 years agoDear,
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