验证是否存在特定图像

时间:2018-07-02 18:02:59

标签: c# leanft

我正在尝试检查浏览器会话中是否存在某个图像(测试结果的输出)。

我正在使用C#SDK。

以Micro Focus的代码示例为例,验证过程使用一行代码,其后跟备注:

Point?: point = browser.VerifyImageExists(imageToFind);

我的问题是:如何检查变量点的内容以及变量的数据类型?

我正在使用UFT LeanFT版本14.03。

1 个答案:

答案 0 :(得分:1)

根据the documentation

Nullable<Point> VerifyImageExists( 
   Image imageToFind,
   byte similarity
)
  

返回值
  图像所在的点;如果找不到,则为null

因此,返回值为nullable类型的System.Drawing.Point

用法:

Point? point = browser.VerifyImageExists(imageToFind);
if (point.HasValue) {
    Console.WriteLine("Image found at {0}", point.Value);
}
else {
    Console.WriteLine("Image not found");
}