我有一些代码:
<!-- language: lang-vb -->
Set oWebEdit = Browser("").Page("").WebEdit("")
'Get the TOProperties collection
Set TOProps = oWebEdit.GetTOProperties()
Dim i, iCount
iCount = TOProps.Count - 1
'Loop through all the properties
For i = 0 To iCount
'Get Name of the property
sName = TOProps(i).Name
'Get the value of the property
sValue = TOProps(i).Value
'Is the value a regular expression
isRegularExpression = TOProps(i).RegularExpression
'Display the values
Msgbox sName & "->" & sValue & "->" & isRegularExpression
Next
我的问题:当我手动将对象添加到对象存储库 (OR) 时(例如:从 Google 搜索页面:webButton 搜索),我看到它的name
、type
和htmltag
作为 OR 中的属性。
在这段代码中,如何isRegularExpression
考虑?这个表达式如何得到回答?是否还有其他在 OR 中不可见但可以找到的属性?