Qtp uft 无法识别 webpage:Count 函数上的链接数
Qtp uft count the links number on a webpage:Count function is not recognized
我正在尝试使用 QTP UFT version 14 build 1775 计算网页中的链接数,但计数功能无法识别,可能已被弃用。如果有人对这个问题有想法,我会感谢你的帮助。
这是我使用的代码
Set desc=description.Create()
desc("micclass").value="Link"
Set objLink =Browser("creationtime:=0").Page("title:=.*").childobjects(desc)
msgbox bjLink.count
您的代码中有错字。您正在设置 objLink
引用,然后尝试从 bjLink
获取 Count
属性。将其更改为 objLink.Count
它将按预期工作
Set desc=description.Create()
desc("micclass").value="Link"
Set objLink =Browser("creationtime:=0").Page("title:=.*").childobjects(desc)
msgbox objLink.count
我正在尝试使用 QTP UFT version 14 build 1775 计算网页中的链接数,但计数功能无法识别,可能已被弃用。如果有人对这个问题有想法,我会感谢你的帮助。
这是我使用的代码
Set desc=description.Create()
desc("micclass").value="Link"
Set objLink =Browser("creationtime:=0").Page("title:=.*").childobjects(desc)
msgbox bjLink.count
您的代码中有错字。您正在设置 objLink
引用,然后尝试从 bjLink
获取 Count
属性。将其更改为 objLink.Count
它将按预期工作
Set desc=description.Create()
desc("micclass").value="Link"
Set objLink =Browser("creationtime:=0").Page("title:=.*").childobjects(desc)
msgbox objLink.count