3

我正在创建一个 QuickTest 脚本,它获取页面的所有 URL,并检查代码为 200 的 http 请求的状态是否为 200。但我的问题是如何从 URL 获取 http 请求状态代码?

4

1 回答 1

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
于 2012-09-17T16:56:27.863 回答