51Testing软件测试论坛

标题: 【已解决】QTP编程时,什么时候使用括号,什么时候不使用括号? [打印本页]

作者: 491623644    时间: 2013-7-4 14:48
标题: 【已解决】QTP编程时,什么时候使用括号,什么时候不使用括号?
本帖最后由 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 "无标题 - 记事本" 是需不需要带括号呢?在什么情况下带括号呢?
作者: TEST_HUAN    时间: 2013-7-4 16:07
不用纠结这个吧,具体查帮助
一般带括号是函数,不带是sub
作者: 491623644    时间: 2013-7-4 16: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 ("无标题 - 记事本")
就不会出错了呢?

帮助上面是没有加括号的
作者: TEST_HUAN    时间: 2013-7-4 17:27
不会吧,等一下我测试以下
作者: 云层    时间: 2013-7-4 17:50
如果我没记错应该是有返回的是带()没返回的不带!!

如果不对反过来
作者: TEST_HUAN    时间: 2013-7-5 09:03
因为有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.
作者: 491623644    时间: 2013-7-5 09:50
谢谢!
作者: kavensyw    时间: 2013-7-6 09:55
本帖最后由 kavensyw 于 2013-7-6 09:57 编辑

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




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2