0

QTPでリンク要素をパラメータ化する方法のヒントを教えてください...「WebEdit」要素/オブジェクトをパラメータ化できるように、「リンク」要素/オブジェクトをパラメータ化できますか?

4

1 に答える 1

0

パラメータ化とは、Link 要素のプロパティをパラメータ化して、記述的プログラミングを使用して識別することを意味しますか? それとも別物ですか??詳しくお願いします!!
使用するオブジェクト タイプごとに、以下のような関数を作成できます。

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 に答える