神剑山庄资源网 Design By www.hcban.com
下面是我总结的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是否支持此函数。
希望大家共同总结一下,一起进步。
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是否支持此函数。
希望大家共同总结一下,一起进步。
标签:
VBScript,常用函数
神剑山庄资源网 Design By www.hcban.com
神剑山庄资源网
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
神剑山庄资源网 Design By www.hcban.com
暂无VBScript 常用函数总结的评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
2024年11月17日
2024年11月17日
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】
- 谭咏麟.2022-倾·听【环球】【WAV+CUE】
- 4complete《丛生》[320K/MP3][85.26MB]
- 4complete《丛生》[FLAC/分轨][218.01MB]