我正在创建一个QuickTest脚本,该脚本获取页面的所有URL,并检查http请求的状态是否为200.但我的问题是如何从URL获取http请求状态代码?
答案 0 :(得分:2)
这是我的解决方案:
Set Http = CreateObject("Microsoft.XMLHttp")
Set oDesc = Description.Create()
oDesc("micclass").Value = "Link"
Set EditCollection = Browser("Browser").Page("Page").ChildObjects(oDesc)
URL_TEMP = EditCollection(i).GetROProperty("href")
Http.Open "GET" , URL_TEMP , false
Http.Send
msgbox Http.Status