TA的每日心情 | 郁闷 2014-12-19 21:33 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
GetROProperty:
最常用的,获得运行时对象的属性
Dim bolVisble
bolVisble=Browser("百度一下,你就知道").Page("百度一下,你就知道").Link("新 闻").GetROProperty ("visible")
'返回值时后面加括号
If cbool(bolVisble)=true Then
Browser("百度一下,你就知道").Page("百度一下,你就知道").Link("新 闻").Click
End If
GetTOProperty
取得对象库中对象的属性值,和GetRo用法是一样的,就不赘述了
GetTOProperties
获得对象的所有属性
set proe=Browser("百度一下,你就知道").Page("百度一下,你就知道").WebEdit("wd").GetTOProperties
For i=0 to proe.count-1
If proe(i).name="name" then
msgbox proe(i).value
End If
next
SetTOProperty
在脚本运行时设置对象的属性值
可以用这个来实现参数化
通过设置LINK的TEXT属性直接来点击其他链接
Browser("百度一下,你就知道").Page("百度一下,你就知道").Link("新 闻").SetTOProperty "text",“知 道”
Browser("百度一下,你就知道").Page("百度一下,你就知道").Link("新 闻").Click |
|