QTP脚本:
Dim actual_value
' Get the actual property value
actual_value = obj.GetROProperty(prop_name)
' Compare the actual value to the expected value
If actual_value = expected_value Then
Reporter.ReportEvent micPass, "VerifyProperty Succeeded", "The " & prop_name & " expected value: " & expected_value & " matches the actual value"
VerifyProperty = True
Else
Reporter.ReportEvent micFail, "VerifyProperty Failed", "The " & prop_name & " expected value: " & expected_value & " does not match the actual value: " & actual_value
VerifyProperty = False
End If
请问上面那个obj是怎么定义的,我一直没看明白!还有Reporter.ReportEvent micPass是什么意思?作者: sidneylover 时间: 2007-7-26 14:47
这里的OBJ就是你要检测的对象,只不是省略了,这里是对它的prop_name属性检测
Reporter.ReportEvent 看帮助啊,就是直接把结果写到ruselts里面作者: love3380 时间: 2007-7-26 14:56
如果我要检测网页上面的文字应该如何写脚本呢?作者: bug_no2 时间: 2007-7-26 15:22
可以用check point检查的标准检查点或者是 output check的文本检查点,用前者应该就可以实现你要的功能了。作者: love3380 时间: 2007-7-26 15:26
但是我不是录制的脚本,我是写的脚本!作者: love3380 时间: 2007-7-26 16:09
我的问题已经解决了,就是用上面的代码,只是把别的对象改一下就好了!