我们正在使用Ranorex 5.02我们需要比较网站UI中的值(数字)和生成的pdf文件这些值总是相同的。每次系统都会为UI和pdf文件生成新值。我们需要检查新生成的值是否正确。 添加验证方法确实没有帮助,因为系统记录了实际数字,并且在运行测试脚本后再次验证失败。我们尝试在验证中创建变量,系统显示无界变量消息。
非常感谢任何帮助。
答案 0 :(得分:2)
您可以使用“获取值”操作将值存储到变量中。之后,您可以使用String class in .NET中的“等于”方法比较值。
public void CompareText(string webText, string pdfText)
{
if(webText.Equals(pdfText))
{
Report.Info("Text is equal!");
}
else
{
Report.Info("Text is NOT equal!");
}
}