欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

VBScript 常用函数总结

程序员文章站 2022-07-04 20:42:55
下面是我总结的vbscript中常用的函数及其用法。   1,getroproperty   说明:you use the getroproperty method to...
下面是我总结的vbscript中常用的函数及其用法。

  1,getroproperty

  说明:you use the getroproperty method to retrieve the current value of a test object property from a run-time object in your application.

  一般来说,所有的对象都可以使用此方法得到运行时对象的实际值。

  语法:object.getroproperty (property, [propertydata])

  如 buttonname=browser("qa home page")。page("qa home page")。webbutton("submit")。gettoproperty("name")

  2,waitproperty

  说明:waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step.

  此方法可以解决由于等待系统进行处理某些操作或网络原因引起的测试对象同步问题。

  语法:object.waitproperty (propertyname, propertyvalue, [timeout])

  如

  window("test")。static("status:")。waitproperty "text", "ready", 30000

  3,instr

  returns the position of the first occurrence of one string within another.

  可以得到一个字符串在另外一个字符串中首次出现的位置。

  语法: instr([start, ]string1, string2[, compare])

  4,split

  returns a zero-based, one-dimensional array containing a specified number of substrings.

  此函数可以把原来用某个特殊字符串连接起来的字符串分割开,得到一个一维的数组。

  5,ubound

  returns the largest available subscript for the indicated dimension of an array.

  得到某个维度的最大值。

  6,trim

  returns a copy of a string without leading spaces (ltrim), trailing spaces (rtrim), or both leading and trailing spaces (trim)。

  如果需要删除字符串左边的所有空格,那么可以使用ltrim 函数;如果需要删除字符串右边的所有空格,那么可以使用rtrim 函数。如果需要删除字符串左边和右边的所有空格,那么可以使用trim 函数。

  7,ucase

  returns a string that has been converted to uppercase.

  此函数可以把所有的字符都转换成相应的大写。

  8,lcase

  returns a string that has been converted to lowercase.

  此函数可以把所有的字符都转换成相应的小写。

  9,cstr

  returns an expression that has been converted to a variant of subtype string.

  由于vbscript只有一种类型variant,你可以使用此函数把某个变量强制转换成string类型。

  10,cint

  returns an expression that has been converted to a variant of subtype integer.

  由于vbscript只有一种类型variant,你可以使用此函数把某个变量强制转换成integer类型。

  在描述性编程语句中,最常用的函数有:

  11,create

  这是创建一类或一个对象时必须要使用的方法。

  12,childobjects

  使用此方法可以得到符合某些条件的一类对象的集合。

  13,count

  使用使用此方法可以得到符合某些条件的一类对象的个数。

  the following example uses the create method to return a properties collection object named editdescription, and then uses the returned object to instruct quicktest to enter the text: myname in the first webedit object in the mercury tours page with the name username.

  set editdesc = description.create()

  editdesc("micclass")。value = "webedit"

  editdesc("name")。value = "username"

  set lists = browser("welcome: mercury")。page("welcome: mercury")。childobjects(editdesc)

  numberoflists = lists.count()

  if numberoflists > 0 then

  browser("welcome: mercury")。page("welcome: mercury")。lists(0)。set "myname"

  end if

  一些具体的用法可以在 qtp的帮助里面找到。 个人的建议是:你最好按照 qtp里面提供的例子,自己使用这些函数自己写几行语句,运行后看一下运行结果,结合qtp帮助里面的说明,这样学习会快,也记得牢固。

  在输出结果时, 常用的函数有 msgbox 和 print 函数。msgbox 函数在 qtp8.2 及其以上版本都可以使用;print 函数需要在 qtp 9.2 版本上使用,qtp 8.2 不支持此函数,不知道 qtp 9.0是否支持此函数。

  希望大家共同总结一下,一起进步。