VBScript 常用函數(shù)總結(jié)
更新時(shí)間:2009年11月30日 19:46:32 作者:
在編寫(xiě) QTP腳本的過(guò)程中,有一些經(jīng)常使用的函數(shù)。如果我們能熟悉這些常用的函數(shù)及其用法,并合理地使用它們,那么一些問(wèn)題就很容易得到解決。
下面是我總結(jié)的VBScript中常用的函數(shù)及其用法。
1,GetROProperty
說(shuō)明:You use the GetROProperty method to retrieve the current value of a test object property from a run-time object in your application.
一般來(lái)說(shuō),所有的對(duì)象都可以使用此方法得到運(yùn)行時(shí)對(duì)象的實(shí)際值。
語(yǔ)法:object.GetROProperty (Property, [PropertyData])
如 ButtonName=Browser("QA Home Page")。Page("QA Home Page")。WebButton("Submit")。GetTOProperty("Name")
2,WaitProperty
說(shuō)明:Waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step.
此方法可以解決由于等待系統(tǒng)進(jìn)行處理某些操作或網(wǎng)絡(luò)原因引起的測(cè)試對(duì)象同步問(wèn)題。
語(yǔ)法: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.
可以得到一個(gè)字符串在另外一個(gè)字符串中首次出現(xiàn)的位置。
語(yǔ)法: InStr([start, ]string1, string2[, compare])
4,Split
Returns a zero-based, one-dimensional array containing a specified number of substrings.
此函數(shù)可以把原來(lái)用某個(gè)特殊字符串連接起來(lái)的字符串分割開(kāi),得到一個(gè)一維的數(shù)組。
5,UBound
Returns the largest available subscript for the indicated dimension of an array.
得到某個(gè)維度的最大值。
6,Trim
Returns a copy of a string without leading spaces (LTrim), trailing spaces (RTrim), or both leading and trailing spaces (Trim)。
如果需要?jiǎng)h除字符串左邊的所有空格,那么可以使用LTrim 函數(shù);如果需要?jiǎng)h除字符串右邊的所有空格,那么可以使用RTrim 函數(shù)。如果需要?jiǎng)h除字符串左邊和右邊的所有空格,那么可以使用Trim 函數(shù)。
7,Ucase
Returns a string that has been converted to uppercase.
此函數(shù)可以把所有的字符都轉(zhuǎn)換成相應(yīng)的大寫(xiě)。
8,LCase
Returns a string that has been converted to lowercase.
此函數(shù)可以把所有的字符都轉(zhuǎn)換成相應(yīng)的小寫(xiě)。
9,Cstr
Returns an expression that has been converted to a Variant of subtype String.
由于VBScript只有一種類(lèi)型Variant,你可以使用此函數(shù)把某個(gè)變量強(qiáng)制轉(zhuǎn)換成String類(lèi)型。
10,CInt
Returns an expression that has been converted to a Variant of subtype Integer.
由于VBScript只有一種類(lèi)型Variant,你可以使用此函數(shù)把某個(gè)變量強(qiáng)制轉(zhuǎn)換成Integer類(lèi)型。
在描述性編程語(yǔ)句中,最常用的函數(shù)有:
11,Create
這是創(chuàng)建一類(lèi)或一個(gè)對(duì)象時(shí)必須要使用的方法。
12,ChildObjects
使用此方法可以得到符合某些條件的一類(lèi)對(duì)象的集合。
13,Count
使用使用此方法可以得到符合某些條件的一類(lèi)對(duì)象的個(gè)數(shù)。
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的幫助里面找到。 個(gè)人的建議是:你最好按照 QTP里面提供的例子,自己使用這些函數(shù)自己寫(xiě)幾行語(yǔ)句,運(yùn)行后看一下運(yùn)行結(jié)果,結(jié)合QTP幫助里面的說(shuō)明,這樣學(xué)習(xí)會(huì)快,也記得牢固。
在輸出結(jié)果時(shí), 常用的函數(shù)有 Msgbox 和 Print 函數(shù)。Msgbox 函數(shù)在 QTP8.2 及其以上版本都可以使用;Print 函數(shù)需要在 QTP 9.2 版本上使用,QTP 8.2 不支持此函數(shù),不知道 QTP 9.0是否支持此函數(shù)。
希望大家共同總結(jié)一下,一起進(jìn)步。
1,GetROProperty
說(shuō)明:You use the GetROProperty method to retrieve the current value of a test object property from a run-time object in your application.
一般來(lái)說(shuō),所有的對(duì)象都可以使用此方法得到運(yùn)行時(shí)對(duì)象的實(shí)際值。
語(yǔ)法:object.GetROProperty (Property, [PropertyData])
如 ButtonName=Browser("QA Home Page")。Page("QA Home Page")。WebButton("Submit")。GetTOProperty("Name")
2,WaitProperty
說(shuō)明:Waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step.
此方法可以解決由于等待系統(tǒng)進(jìn)行處理某些操作或網(wǎng)絡(luò)原因引起的測(cè)試對(duì)象同步問(wèn)題。
語(yǔ)法: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.
可以得到一個(gè)字符串在另外一個(gè)字符串中首次出現(xiàn)的位置。
語(yǔ)法: InStr([start, ]string1, string2[, compare])
4,Split
Returns a zero-based, one-dimensional array containing a specified number of substrings.
此函數(shù)可以把原來(lái)用某個(gè)特殊字符串連接起來(lái)的字符串分割開(kāi),得到一個(gè)一維的數(shù)組。
5,UBound
Returns the largest available subscript for the indicated dimension of an array.
得到某個(gè)維度的最大值。
6,Trim
Returns a copy of a string without leading spaces (LTrim), trailing spaces (RTrim), or both leading and trailing spaces (Trim)。
如果需要?jiǎng)h除字符串左邊的所有空格,那么可以使用LTrim 函數(shù);如果需要?jiǎng)h除字符串右邊的所有空格,那么可以使用RTrim 函數(shù)。如果需要?jiǎng)h除字符串左邊和右邊的所有空格,那么可以使用Trim 函數(shù)。
7,Ucase
Returns a string that has been converted to uppercase.
此函數(shù)可以把所有的字符都轉(zhuǎn)換成相應(yīng)的大寫(xiě)。
8,LCase
Returns a string that has been converted to lowercase.
此函數(shù)可以把所有的字符都轉(zhuǎn)換成相應(yīng)的小寫(xiě)。
9,Cstr
Returns an expression that has been converted to a Variant of subtype String.
由于VBScript只有一種類(lèi)型Variant,你可以使用此函數(shù)把某個(gè)變量強(qiáng)制轉(zhuǎn)換成String類(lèi)型。
10,CInt
Returns an expression that has been converted to a Variant of subtype Integer.
由于VBScript只有一種類(lèi)型Variant,你可以使用此函數(shù)把某個(gè)變量強(qiáng)制轉(zhuǎn)換成Integer類(lèi)型。
在描述性編程語(yǔ)句中,最常用的函數(shù)有:
11,Create
這是創(chuàng)建一類(lèi)或一個(gè)對(duì)象時(shí)必須要使用的方法。
12,ChildObjects
使用此方法可以得到符合某些條件的一類(lèi)對(duì)象的集合。
13,Count
使用使用此方法可以得到符合某些條件的一類(lèi)對(duì)象的個(gè)數(shù)。
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的幫助里面找到。 個(gè)人的建議是:你最好按照 QTP里面提供的例子,自己使用這些函數(shù)自己寫(xiě)幾行語(yǔ)句,運(yùn)行后看一下運(yùn)行結(jié)果,結(jié)合QTP幫助里面的說(shuō)明,這樣學(xué)習(xí)會(huì)快,也記得牢固。
在輸出結(jié)果時(shí), 常用的函數(shù)有 Msgbox 和 Print 函數(shù)。Msgbox 函數(shù)在 QTP8.2 及其以上版本都可以使用;Print 函數(shù)需要在 QTP 9.2 版本上使用,QTP 8.2 不支持此函數(shù),不知道 QTP 9.0是否支持此函數(shù)。
希望大家共同總結(jié)一下,一起進(jìn)步。
相關(guān)文章
vbs實(shí)現(xiàn)unicode和ascii編碼轉(zhuǎn)換
這篇文章主要介紹了vbs實(shí)現(xiàn)unicode和ascii編碼轉(zhuǎn)換,本文同時(shí)介紹了OpenTextFile和CreateTextFile的使用,需要的朋友可以參考下2014-11-11VBScript開(kāi)發(fā)自動(dòng)化測(cè)試腳本的方法分析
很多人都覺(jué)得微軟的VBScript功能比較弱,如果從開(kāi)發(fā)自動(dòng)化測(cè)試的角度來(lái)講,更是不可能了。從我對(duì)VBScript腳本的了解來(lái)看,對(duì)一個(gè)腳本是否可以做自動(dòng)化測(cè)試需要這個(gè)測(cè)試人員具備兩方面的知識(shí),第一個(gè),就是對(duì)VBScript腳本開(kāi)發(fā)語(yǔ)言精通,要了解VBScript的核心技術(shù)如何更廣泛的應(yīng)用;第二個(gè),就是要有自動(dòng)化的測(cè)試思想,這個(gè)一定得是做過(guò)測(cè)試工作的能夠了解的多一些。2008-03-03VBS教程:函數(shù)-LoadPicture 函數(shù)
VBS教程:函數(shù)-LoadPicture 函數(shù)...2006-11-11用vbs實(shí)現(xiàn)取消隱藏文件夾中的所有文件
用vbs實(shí)現(xiàn)取消隱藏文件夾中的所有文件...2007-04-04