希望判断现有网页是处在哪个页面?可能性有两个页面, Page A和Page B
如何通过判断语句判断现有是在哪个页面?Browser("IE").Page("Page A") 或 Browser("IE").Page("Page B")
谢谢!!作者: 17800455 时间: 2011-6-17 16:39
两个页面肯定不一样吧?
那你可以判断页面上元素啊。
举例:
if a.webedit.exist then
msgbox "现在是A页面"
Else
msgbox "现在是B页面"
end if作者: kurt_share 时间: 2011-6-20 10:29
Dim list,oDesc
Set oDesc = Description.Create()
oDesc("micclass").Value = "Page"
set list = Browser("XXXXX").ChildObjects(oDesc)
'以上可以得到Browser下的所有Page,循环比对
For i = 0 to list.count() - 1
msgbox list(i).GetROProperty("title")
'这里可以根据GetROProperty得到Page的属性值,既然你有两个页面,那你应该知道有什么属性不一样吧,加个IF比对一下就行了。
Next