TA的每日心情 | 开心 2014-12-26 13:34 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
被这个问题给征服了
我尝试了用SPY,发现属性都是一样的。
而且运行过程,我使用脚本记录它的属性:
*********************************************************************************
With .Page("Page").Frame("myFrame")
x="html tag"
y="html id"
z="innertext"
l="visible"
a = .WebElement("WebTable").GetROProperty (""&x)
b = .WebElement("WebTable").GetROProperty (""&y)
c = .WebElement("WebTable").GetROProperty (""&z)
d = .WebElement("WebTable").GetROProperty (""&l)
'在点击“上传”按钮前,把控件的属性显示在报告里
reporter.ReportEvent 0,"点击前", x&"="& a &chr(13)&y&"="& b & chr(13) &z &"="& c&chr(13)&l&"="& d
.WebButton("上传").Click
wait(1)
a = .WebElement("WebTable").GetROProperty (""&x)
b = .WebElement("WebTable").GetROProperty (""&y)
c = .WebElement("WebTable").GetROProperty (""&z)
d = .WebElement("WebTable").GetROProperty (""&l)
'在点击“上传”按钮后,把控件的属性显示在报告里
reporter.ReportEvent 0,"点击后", x&"="& a &chr(13)&y&"="& b & chr(13) &z &"="& c&chr(13)&l&"="& d
End With
*********************************************************************************
运行完成,查看报告:
点击前 html tag=TD
html id=
innertext=正在上传请稍等...
visible=True
Passed 2007-6-11 - 11:27:35
点击后 html tag=TD
html id=
innertext=正在上传请稍等...
visible=True
Passed 2007-6-11 - 11:27:40
奇怪的是,点击前明明是看不见的,visible应该为false才对。偏偏为true,其它可识别的属性值完全一样。
真是没办法了……
[ 本帖最后由 higkoo 于 2007-6-11 13:03 编辑 ] |
|