TA的每日心情 | 奋斗 2021-8-16 14:04 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
1.关于DataTable
导入:DataTable.ImportSheet(FileName, SheetSource, SheetDest)
FileName : The full or relative path of the Excel table from which you want to import a sheet. It
can be a file system or ALM path.
SheetSource: The name or index of the sheet in the file that you want to import. Index values
begin with 1.
SheetDest: The name or index of the sheet in the data table that you want to replace with the
SheetSource. Index values begin with 1.
导出:DataTable.ExportSheet(FileName, DTSheet)
FileName: The full file system path of the Excel table to which you want to export a sheet.
DTSheet : The name or index of the run-time Data pane sheet that you want to export.
Index values begin with 1(就是你要导出的表的索引号或者表所在位
置)
取值 \ 赋值: DataTable.Value ("列名","表所在位置")
例如: LoginAccount = DataTable.Value ("LoginAccount","login") 取值
DataTable.Value ("LoginResult","login") = result
赋值
关于循环时导入表的覆盖: 加一个判断
rownum = Datatable.GetRowCount
If rownum = 0 Then
DataTable.ImportSheet "D:\User\Desktop\EPM_T2_郝文浩_13章\login_DateTable\用户及登
录结果.xls",1,"login"
End If
关于循环时导出表的覆盖:可将导出操作单独放入一个Action 里面
2. 关于调试
遇到错误要想到通过调试来找到问题所在。在问题位置加断点加断点,可加多个断点。
调试时可通过Data 窗口看表格数据,通过Loca Variables 窗口看变量的值。
可通过 Step O ver 一步步调试。
3.关于遇到问题
先考虑脚本流程(逻辑)是否合理,涉及到一些很细节的地方,比如要加一些判断或者是关闭
一些窗口,点击一些按钮。
在遇到需要某个方法时要想到函数,用函数实现脚本中需要的操作。函数包括UFT中的和VBS
中的。
通过调试找到具体问题。
|
|