51Testing软件测试论坛

标题: 请教字符串变量的操作 [打印本页]

作者: lucieneven    时间: 2008-11-25 02:44
标题: 请教字符串变量的操作
如题,请教一下字符串变量的相加操作。进入ExpertView,

录制代码如下:
Browser("MERCHANT web site simulator").Page("MERCHANT web site simulator").WebEdit("customerid").Set "66"
Browser("MERCHANT web site simulator").Page("MERCHANT web site simulator").WebEdit("customfield").Set "Account with customer id 66"
提取字符串变量,改脚本如下:
CustomerAccount = 66  
CustomerField = "Account with customer id" +  CustomerAccount
Browser("MERCHANT web site simulator").Page("MERCHANT web site simulator").WebEdit("customerid").Set CustomerAccount
Browser("MERCHANT web site simulator").Page("MERCHANT web site simulator").WebEdit("customfield1").Set CustomerField

运行后,显示CustomerField = "Account with customer id" +  CustomerAccount 这句语法出错。

这里请问大家该如何操作字符串的相加,非常感谢!
作者: 风过无息    时间: 2008-11-25 09:02
楼主在定义CustomerAccount 的时候
CustomerAccount = 66  
这样CustomerAccount 就是INT型,

应该改为
CustomerAccount = "66"  
CustomerField = "Account with customer id " +  CustomerAccount
这样就可以了.
作者: kou_dou    时间: 2008-11-25 10:52
CustomerField = "Account with customer id " & CustomerAccount
作者: 远野志贵    时间: 2008-11-25 22:36
+和&是一样的功能!
作者: lucieneven    时间: 2008-11-26 03:18
& 和 + 都试过啦,下面这个例子,运行时:

cardnum = "4520340000466238"
customerfield 2 = "the customer with the visa card named " + cardnum

同样报错,如附图所示。疑惑中
作者: lingxin5013    时间: 2008-11-26 09:12
cardnum = "4520340000466238"
customerfield = "the customer with the visa card named " + cardnum
msgbox customerfield
自己看吧
作者: Old々Man    时间: 2008-11-26 15:37
customerfield 2 变量中间还可以有空格的?
作者: lucieneven    时间: 2008-11-26 22:09
楼上说的对,1、"66"和66,类型要注意。2、customerfield2和customerfield 2不一样,后者不正确。

谢谢大家都帮助,




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2