Page下有Frame
如何判断Frame内是否有滚动条呢?作者: jinsen 时间: 2007-12-14 17:19
使用相同的方法也能判断:
Dim pageobj
Set pageobj = Browser("CreationTime:=0").Page("index:=").Frame("name:=Frame")
print pageobj.Object.body.currentStyle.overflow作者: cdq1010 时间: 2007-12-17 10:16
为什么我的结果不一样?
Print 在QTP8.2下是不是不能用啊?作者: jinsen 时间: 2007-12-17 13:57
很对不起,上次说明由于我的调查不足,误导了你。以下是正确的解释: currentStyle:
代表了在全局样式表、内嵌样式和 HTML 标签属性中指定的对象格式和样式。
返回反映页面所应用的样式设置的值,但可能并不反映获取值时渲染所采用的值。 Overflow: visible:Default. Content is not clipped and scroll bars are not added. scroll:Content is clipped and scroll bars are added, even if the content does not exceed the dimensions of the object. hidden:Content that exceeds the dimensions of the object is not shown. auto:Content is clipped and scrolling is added only when necessary.作者: jackymail 时间: 2007-12-18 11:44