如何在QTP / UFT中识别动态变化的索引?

时间:2016-12-12 13:38:26

标签: qtp

我正在尝试使用下面的代码点击一个元素。在那里,我想通过" index"变量的值。有没有办法做到这一点?

Browser("Home Page").Page("Account Search").WebElement("innertext:=Request","index:=5","html tag:=A").Click

1 个答案:

答案 0 :(得分:5)

这很简单。

Dim i
i = 5

Browser("Home Page").Page("Account Search").WebElement("innertext:=Request","index:=" & i,"html tag:=A").Click