|
Dim oDesc,tempObj,pageObj
Set pageObj = Browser("5173.com|装备交易游戏币交易帐号交易|寄售担保交易|").Page("5173网游社区").Frame("leftmenu")
Set oDesc = Description.Create()
oDesc("micclass").Value = "Link"
Set tempObj = pageObj.ChildObjects(oDesc)
objCount = tempObj.Count
'print(objCount)
If objCount > 0 Then
Dim tempUrl
For i = 0 to objCount -1
tempUrl = ""
tempObj(i).click
If Browser("CreationTime:=3").Page("index:=").Exist Then
Reporter.ReportEvent micPass, "LinkCheckPoint", "Link can be used."
Browser("CreationTime:=3").close
Else
tempUrl = "URL = " & tempObj(i).GetROProperty("url")
Reporter.ReportEvent micFail, "LinkCheckPoint", "Link can not be used." & tempUrl
End If
Next
End If
Browser("CreationTime:=3")
这句是描述性语言,[CreationTime]代表第几个打开的IE,Index从"0","3"表示是第4个打开的IE。 |
|