例如,以下语句指示 QuickTest 选中 Itinerary 网页上的所有复选框:
Set MyDescription = Description.Create()
MyDescription("html tag").Value = "INPUT"
MyDescription("type").Value = "checkbox"
Set Checkboxes = Browser("Itinerary").Page("Itinerary").ChildObjects(MyDescription)
NoOfChildObjs = Checkboxes.Count
For Counter=0 to NoOfChildObjs-1
Checkboxes(Counter).Set "ON"
Next
本文转自 fish_yy 51CTO博客,原文链接:http://blog.51cto.com/tester2test/139395,如需转载请自行联系原作者