方案1已经ok了.
但是方案2不知道该怎样写这个脚本? 照葫芦化瓢以后,不能执行. 呵呵,不好意思,刚学,哪位指教一下?先谢了.
下面的 LoginOK 开始的那段,就出错了.错误信息是这样的:
Cannot identify the object "http://10.66.128.6:8080/test/"(of class WebArea). Verify that this object's properties match an object currently displayed in your application.
LoginOK=Browser("测试login系统").Page("测试login系统").WebArea("http://10.66.128.6:8080/test/").Click.Exist
counter=1
While Not LoginOK
Wait(2)
LoginOK=Browser("测试login系统").Page("测试login系统").WebArea("http://10.66.128.6:8080/test/").Click.Exist
counter=counter+1
If counter=10 Then
LoninOK=True
End If
Wend
LoginOK=Browser("测试login系统").Page("测试login系统_2").Frame("FrameMain").WebElement("登录/注销").Exist
counter=1
While Not LoginOK
Wait(2)
LoginOK=Browser("测试login系统").Page("测试login系统_2").Frame("FrameMain").WebElement("登录/注销").Exist
counter=counter+1
If counter=10 Then
LoninOK=True
End If
Wend
Browser("测试login系统").Page("测试login系统_2").Frame("FrameMain").WebElement("登录/注销").Click
Browser("测试login系统").Page("测试login系统_2").Frame("FrameMain").WebElement("注销").Click
Browser("测试login系统").Dialog("Microsoft Internet Explorer").WinButton("确定").Click
Browser("测试login系统").Page("测试login系统").Sync作者: walker1020 时间: 2006-6-27 10:21
aprina 说的对,很有道理! 这是不是你要的结果?作者: xiaonan 时间: 2006-6-27 10:32
希望大家能把解决问题后答案给公布出来,以便让他人学习.谢谢!作者: mingerp1026 时间: 2006-7-27 16:09
aprina 说的很对,我今天遇到同样问题也是这样解决的
谢谢大家分享!
还有点体会,遇到这种情况,我分段录制脚本也是可以的作者: stq1000 时间: 2006-7-28 15:35
哈哈,又学到了一点知识,把我的一个问题也解决了,太好了。。作者: applebugs 时间: 2006-7-28 22:51 标题: 回贴 个人认为,只要用wait语句,不是绝对,谁可不可以举例,就此程序而言,怎么用同步来实现?作者: yylfchl 时间: 2011-10-19 14:32
SystemUtil.Run "C:\Program Files\Internet Explorer\iexplore.exe","","C:\Documents and Settings\pc003-2011","open"
Browser("百度一下,你就知道").WinEdit("Edit").SetSelection 0,21
Browser("百度一下,你就知道").WinEdit("Edit").Type "http://192.168.10.148:8080/ca"
Browser("百度一下,你就知道").WinEdit("Edit").Set "http://192.168.10.148:8080/cas"
Browser("百度一下,你就知道").WinEdit("Edit").Type micReturn
Browser("百度一下,你就知道").Page("电子交易平台管理系统").WebEdit("empAcct").Set "yyl"
Browser("百度一下,你就知道").Page("电子交易平台管理系统").WebEdit("password").Click
Browser("百度一下,你就知道").Page("电子交易平台管理系统").WebEdit("password").SetSecure "4e9e6909c197016bc6d605678fda"
Browser("百度一下,你就知道").Page("电子交易平台管理系统").WebEdit("validcode").Click
Browser("百度一下,你就知道").Page("电子交易平台管理系统").WebEdit("validcode").Set "8020"
Browser("百度一下,你就知道").Page("电子交易平台管理系统").Image("dl").Click
Browser("百度一下,你就知道").Page("电子交易平台后台管理系统").Link("交易管理").Click
Browser("百度一下,你就知道").Page("交易管理").Sync
Browser("百度一下,你就知道").Close
回放出错:Cannot identify the object "交易管理" (of class Link). Verify that this object's properties match an object currently displayed in your application.
求帮忙解决作者: gszhaochengyong 时间: 2011-11-2 14:08
WAIT()作者: SexyCat_1113 时间: 2011-11-2 19:47
.Click.Exist
能这样写?作者: wangyanzhao 时间: 2011-11-3 09:46
举个例子:browser("***").sync 是等待浏览器加载完成,见右下角有“完成”即可。