TA的每日心情 | 开心 2015-12-26 15:22 |
---|
签到天数: 3 天 连续签到: 1 天 [LV.2]测试排长
|
我是想用描述性编程,找出页面中所有的编辑框,然后用遍历的方法将编辑框一一赋值。但是运行到第二个Set时就报错“General run error”
SystemUtil.Run "C:\Program Files\Internet Explorer\IEXPLORE.EXE"
Set allWebEdit= Description.Create()
allWebEdit("micClass").Value="WebEdit"
Set allWebEdits=Browser("micClass:=Browser").Page("micClass:=Page").ChildObjects(allWebEdit)
For i=1 to allWebEdits.count-1
Set WebEdit = Description.Create()
WebEdit =allWebEdit.item(i)
Browser("micClass:=Browser").Page("micClass:=Page").WebEdit(WebEdit).Set "company310"
Next
Set allWebEdit=Nothing
Set allWebEdits=Nothing
Set WebEdit=Nothing |
|