怎么样获取所取得的数据的类型?
temp = Browser("CRM综合业务系统").Page("四CRM综合业务系统").Frame("Frame").WebEdit("phoneNo").GetROProperty("value")怎么获取temp参数的数据类型呢? 用函数Typename()
根据VarType返回值判断数据类型
Typecheck=VarType(temp )'返回值Typecheck为2则为数值型,返回值为8则为字符型
if Typecheck=2 then
print "数字"
end if
if Typecheck=8 then
print "字符"
end if
'注:GetROProperty取到的数据都是字符型的,所以不需要获取,若要和int型数据比较,使用cint()转换一下就可以了 temp=cint(temp)
页:
[1]