51Testing软件测试论坛

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

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

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

[原创] QTP调用记事本程序点击”另存为“菜单时出现”共用对话框错误“

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2009-12-24 13:03:40 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
在QTP脚本中,ACtion1调用ACtion2,ACtion2脚本的功能就是打开指定文件另存为ANSI格式,问题就出现在脚本执行在执行到点击记事本“另存为”菜单时,“共用对话框错误”就出现了,不知如何解决此问题,望高人相助!
ACtion2脚本如下(单独运行不会出现此问题):


Dim  fileName ,text  ,   filePath
          '  filePath =  Parameter("FilePath")
           filePath = "G:\Program Files\HP\QuickTest Professional\Tests\Test2\Test2.usr"
          SystemUtil.Run    "notepad.exe" ,  filePath   
      fileName =Right (   filePath      ,          len( filePath)     -     InStrRev( filePath, "\",-1,1)  )
         
'记事本.usr - 记事本
text= fileName&" - 记事本"
Dim dsc  , dscButton
Set dsc=Description.Create()
dsc("text").value = text
Window(dsc).WinMenu("menuobjtype:=2").Select "文件(F);另存为(A)..."

Dim dscDialog  ,  dscComboBox     ,    ComboBoxCount  ,  ComboBoxCollection  ,  CodeType
Set  dscDialog =Description.Create()
dscDialog("text" ).value = "另存为"

Set  dscComboBox=Description.Create()
   dscComboBox("nativeclass").value = "ComboBox"
  'set     ComboBoxCollection  =Window(dsc).Dialog( dscDialog).ChildObjects(   dscComboBox)
  'ComboBoxCount= ComboBoxCollection.count
  'set   CodeType=ComboBoxCollection( ComboBoxCount -1)
  Window(dsc).Dialog( dscDialog).WinComboBox("Class Name:=WinComboBox","Index:=3").Select   "ANSI"


set  dscButton =Description.Create()
dscButton ("nativeclass").value = "Button"   '"text:=保存(&S)","nativeclass:=Button","Index:=0"
dscButton ("Index").value = "0"

Window(dsc).Dialog( dscDialog).WinButton(  dscButton ).Click
Window(dsc).Dialog( dscDialog).Dialog( dscDialog).WinButton(  dscButton ).Click
Window(dsc).Close
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
 楼主| 发表于 2009-12-24 19:28:38 | 只看该作者
问题解决了!
原来我在ACtion1中用到了此语句:
Dim       filePath
          filePath  =   Environment("TestDir") &"\\MyLog.vbs"                                  
          RunAction "ACtion2", oneIteration ,  filePath   '把指定的vbs脚本文件另存为ANSI格式
            ExecuteFile       filePath         '执行刚保存的vbs文件,获取相应的类及函数
就会出现上述错误,
但是当我直接用文件名,也就是把以下两句话交换一下:
           filePath  =   Environment("TestDir") &"\\MyLog.vbs" 替换为
           filePath  =   "MyLog.vbs"   
在执行脚本,这个错误就不存在了!
就这小小的问题困扰了我两天,现在终于解决了!
回复 支持 反对

使用道具 举报

本版积分规则

关闭

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

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

GMT+8, 2024-11-25 10:26 , Processed in 0.067008 second(s), 28 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

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