TA的每日心情 | 开心 2015-12-26 15:22 |
---|
签到天数: 3 天 连续签到: 1 天 [LV.2]测试排长
|
本帖最后由 黑羽祭 于 2013-3-15 09:02 编辑
html源文件如下:
<html>
<head>
</head>
<body>
<select id=select1>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
</body>
</html>
脚本是这样写的:
SystemUtil.Run "E:\临时文件\html1.html"
Set oDoc=Browser("micClass:=browser").Page("micClass:=page").Object
element_select=oDoc.getElementByID("select1")
xuanxiangCount=element_select.Options.length
msgbox xuanxiangCount
运行到倒数第二句就报错,“不能用这个方法什么的……”。那应该用什么方法呢? |
|