你可以定义一个空的列,专门用来存放你要保存的比较之后的测试结果,每执行完一行数据之后,比较之后的结果,你就可以往datatable中写数据啊.作者: Simatu 时间: 2008-5-5 10:07
我也是这么想的,可是用什么方法去实现呢?作者: walker1020 时间: 2008-5-5 10:15
楼主去 QTP的帮助文件里面看 DataTable的有关说明吧作者: walker1020 时间: 2008-5-5 10:18
To set the value:
DataTable.Value(ParameterID [, SheetID])=NewValue
or DataTable(ParameterID [, SheetID]) =NewValue作者: walker1020 时间: 2008-5-5 10:19
Argument Type Description
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.作者: Simatu 时间: 2008-5-5 10:20
恩恩,翻到了。。。谢谢版主作者: Simatu 时间: 2008-5-5 10:52
跑通过了。。。