标题: QTP中if..then函数问题 [打印本页] 作者: diandian 时间: 2005-11-22 16:44 标题: QTP中if..then函数问题 在测试脚本中我要写一个if...then函数,如何写?
如果password等于数字型就执行,不等于数字型而等于字符型就报错。这个脚本怎么写啊?
肯定各位朋友指教!谢谢!
If workextension<>int Then
Browser("Browser").Dialog("Microsoft Internet Explorer").Static("Please Enter Numeric Value.").Output CheckPoint("Please Enter Numeric Value.")
Browser("Browser").Dialog("Microsoft Internet Explorer").WinButton("OK").Click
else
Browser("Browser").Page("Page").Frame("main_2").Link("Basic Profile").Click
Browser("Browser").Page("Page").Sync
End If作者: diandian 时间: 2005-11-22 16:49 标题: 有点错误! If password<>int Then
Browser("Browser").Dialog("Microsoft Internet Explorer").Static("Please Enter Numeric Value.").Output CheckPoint("Please Enter Numeric Value.")
Browser("Browser").Dialog("Microsoft Internet Explorer").WinButton("OK").Click
else
Browser("Browser").Page("Page").Frame("main_2").Link("Basic Profile").Click
Browser("Browser").Page("Page").Sync
End If
我想int代表字符型所以就这样写了,结果有错误!
if password.....then 不是 if workextension...then作者: 海龙 时间: 2005-11-22 18:07
If password<>int Then