51Testing软件测试论坛

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

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2344|回复: 7
打印 上一主题 下一主题

[求助] 【已解决】QTP编程时,什么时候使用括号,什么时候不使用括号?

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2013-7-4 14:48:22 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 491623644 于 2013-7-5 09:50 编辑
  1. set oWsh=createobject("wscript.shell")
  2. oWsh.Run "notepad"
  3. oWsh.AppActivate "无标题 - 记事本"
  4. oWsh.SendKeys"Pavel"
复制代码

oWsh.AppActivate "无标题 - 记事本" 是需不需要带括号呢?在什么情况下带括号呢?
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2013-7-4 16:07:52 | 只看该作者
不用纠结这个吧,具体查帮助
一般带括号是函数,不带是sub
回复 支持 反对

使用道具 举报

该用户从未签到

3#
 楼主| 发表于 2013-7-4 16:25:25 | 只看该作者
回复 2# TEST_HUAN

  1. set oWsh=createobject("wscript.shell")
  2. oWsh.Run "notepad"
  3. While not oWsh.AppActivate "无标题 - 记事本"
  4. wend
  5. oWsh.SendKeys"Pavel"
复制代码

为什么我在执行上面的语句的时候,会出现错误
如果加上括号
While not oWsh.AppActivate ("无标题 - 记事本")
就不会出错了呢?

帮助上面是没有加括号的
回复 支持 反对

使用道具 举报

该用户从未签到

4#
发表于 2013-7-4 17:27:46 | 只看该作者
不会吧,等一下我测试以下
回复 支持 反对

使用道具 举报

该用户从未签到

5#
发表于 2013-7-4 17:50:49 | 只看该作者
如果我没记错应该是有返回的是带()没返回的不带!!

如果不对反过来
回复 支持 反对

使用道具 举报

该用户从未签到

6#
发表于 2013-7-5 09:03:45 | 只看该作者
因为有while语句,需要用括号
Remarks
The AppActivate method returns a Boolean value that identifies whether the procedure call is successful. This method changes the focus to the named application or window, but it does not affect whether it is maximized or minimized. Focus moves from the activated application window when the user takes action to change the focus (or closes the window).

In determining which application to activate, the specified title is compared to the title string of each running application. If no exact match exists, any application whose title string begins with title is activated. If an application still cannot be found, any application whose title string ends with title is activated. If more than one instance of the application named by title exists, one instance is arbitrarily activated.
回复 支持 反对

使用道具 举报

该用户从未签到

7#
 楼主| 发表于 2013-7-5 09:50:15 | 只看该作者
谢谢!
回复 支持 反对

使用道具 举报

  • TA的每日心情
    开心
    2015-10-19 13:26
  • 签到天数: 2 天

    连续签到: 2 天

    [LV.1]测试小兵

    8#
    发表于 2013-7-6 09:55:03 | 只看该作者
    本帖最后由 kavensyw 于 2013-7-6 09:57 编辑

    记住一点就行了:有=号(赋值)的加括号,没=号的就不用加括号。即使函数有返回值但不赋给别的变量好像也不用加括号。
        按我的理解好像是这样。
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

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

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

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

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

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