0

请给我一个提示如何在 QTP 中参数化链接元素...因为我们可以参数化“WebEdit”元素/对象,我们可以参数化“链接”元素/对象吗?我们怎么能?

4

1 回答 1

0

通过参数化,您是指参数化链接元素的属性以使用描述性编程来识别它吗?或者是别的什么??请详细说明!!
您可以为要使用的每种对象类型构建如下所示的函数。

public Function CreateLinkDescription(LinkInnerTextValue, LinkHrefValue)
    Set objLink = Description.Create()  
    objLink("innertext").Value = LinkInnerTextValue
    objLink("href").Value = LinkHrefValue      
    'Add any other properties that you want to specify in the same fashion as above                                                                                                    
    Set CreateLinkDescription = objLink
End Function
于 2013-03-17T18:36:22.697 回答