验证QTP中的网页上是否存在文本

时间:2015-10-12 17:07:48

标签: qtp

我有一个网页,其中包含以2个为一组的不同单词,如何在QTP中确认这些单词出现在网页上

在附图中,我按顺序进行了一系列测试,(顺序保持不变)但是我必须明确检查网页上是否有该文字。 enter image description here

提前谢谢你。

2 个答案:

答案 0 :(得分:3)

你可以" Instr"找出例如 - InStr([start,] string1,string2 [,compare]),所以你可以使用类似的东西 -

void android_main(struct android_app* app) 
{
    struct engine engine;
    ANativeActivity* activity = app->activity;
    std::string mApkWorkspacePath = activity->internalDataPath;
    AAssetManager* mApkAssetManager = activity->assetManager;
}

'如果strmatch返回0则没有匹配

答案 1 :(得分:0)

太棒了!试试这个

If Browser("title:=HRnet"). Page("title:=HRnet").WebElement("innertext:=No news to display.").Exist Then
  Msgbox "Text found"
Else
  Msgbox "Text not found"
End If by

fresh quotes