51Testing软件测试论坛

标题: 想将页面上数据写到Global表中,按帮助文档格式写报错。。 [打印本页]

作者: shunchen07    时间: 2012-7-7 23:51
标题: 想将页面上数据写到Global表中,按帮助文档格式写报错。。
新学QTP,用的是QTP10,测的是自带的web航班系统,我想把图中那段话导入到Global表,方便别的action调用
[attach]79870[/attach]

我的脚本 [attach]79871[/attach]

运行后报错  [attach]79872[/attach]

求解释啊。我把帮助文档上的话也贴上来,免得大家说我不看文档瞎写。
[attach]79873[/attach]


。另外问下,如果上面的操作成功后,别的action能调用那段话吗?
作者: 北京测试基地    时间: 2012-7-10 09:59
不能直接用A当作列的名称。 双击A列,改个名字,然后在程序中引用时用双引号引起来。

datatable(a,"Global") = b 修改成
datatable("YourColumnName","Global") = b

可以用编号,从1开始
datatable(1,"Global") = b
可以用内置变量
dtLocalSheet, or dtGlobalSheet.
datatable(1,dtGlobalSheet)

这个方法是获取和设置一个runtime的值,程序运行结束你在表格里面是看不到你设定的值的,只能在程序运行时看到,想要看到你是否成功设定或者读取,在当前步骤加一个wait(n),




ParameterID  Variant  Identifies the parameter (column) of the value to be set/retrieved. Index values begin with 1.  
SheetID  Variant  Optional. Identifies the sheet to be returned. The SheetID can be the sheet name, index or dtLocalSheet, or dtGlobalSheet.
If no Sheet is specified, the first sheet in the run-time Data Table is used (global sheet). Index values begin with 1.  
NewValue  String  Sets the value for the specified table cell.




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