51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1341|回复: 1
打印 上一主题 下一主题

UFT常识

[复制链接]
  • TA的每日心情
    奋斗
    2021-8-16 14:04
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]测试小兵

    跳转到指定楼层
    1#
    发表于 2018-3-12 16:11:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    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
    中的。

    通过调试找到具体问题。

    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-18 06:27 , Processed in 0.064045 second(s), 22 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表