标题: 多个BUTTON按钮只有第一个按钮click有效,其余的都会报General run error错误 [打印本页] 作者: 军临城下 时间: 2008-8-22 14:36 标题: 多个BUTTON按钮只有第一个按钮click有效,其余的都会报General run error错误 Set button=Description.Create()
button("micclass").Value="WebButton"
button("name").Value="启动"
button("html tag").Value="INPUT"
Set newbutton=Browser("*****系统").Page("****系统").Frame("Frame").ChildObjects(button)
numbers=newbutton.Count
print numbers
For i=0 to numbers-1
wait 1
newbutton(i).Click
Next
在这个for循环里面,发现只有第一次循环能成功点击“启动”button,而后面都会报General run error的错误
于是我便使用下面的语句进行单个点击调试:
newbutton(0).Click
newbutton(1).Click
newbutton(2).Click
结果发现也是只有第一句:newbutton(0).Click能成功点击“启动”button,而后面都会报General run error的错误