Going forward, I am starting a series of posts on using VB Script with QTP. It will start from the basics of VB Script and move to the advanced course.
What is VB Script?
VB Script is a subset of Visual Basic 4.0 language. It was developed by Microsoft to provide more processing power to Web pages. VB Script can be used to write both server side and client side scripting. (If you already know Visual Basic or Visual Basic for Applications (VBA), VB Script will be very familiar. Even if you do not know Visual Basic, once you learn VB Script, you are on your way to programming with the whole family of Visual Basic languages.)
Data types
VB Script supports only one data type called Variant. The variant data type is a special kind of data type that can contain different kinds of information. It is the default data type returned by all functions in VB Script. A variant behaves as a number when it is used in a numeric context and as a string when used in a string context. It is possible to make numbers behave as strings by enclosing them within quotes.
Variables
A variable is a placeholder that refers to a memory location that stores program information that may change at run time. A variable is referred to by its name for accessing the value stored or to modify its value.
Variable Declaration
Variables in VB Script can be declared in three ways:
- Dim Statement
- Public Statement
- Private Statement
For example:
Dim No_Passenger
Multiple variables can be declared by separating each variable name with a comma. For example:
Dim Top, Left, Bottom, Right
You can also declare a variable implicitly by simply using its name in your script. That is not generally a good practice because you could misspell the variable name in one or more places, causing unexpected results when your script is run. For that reason, the Option Explicit statement is available to require explicit declaration of all variables. The Option Explicit statement should be the first statement in your script.
Note:
Variables declared with Dim at the script level are available to all procedures within the script. At the procedure level, variables are available only within the procedure.
Public statement variables are available to all procedures in all scripts.
Private statement variables are available only to the script in which they are declared.
Naming Convention
There are standard rules for naming variables in VB Script. A variable name:
- Must begin with an alphabetic character.
- Cannot contain an embedded period.
- Must not exceed 255 characters.
- Must be unique in the scope in which it is declared.
Assigning Values to Variables
Values are assigned to variables creating an expression as follows: the variable is on the left side of the expression and the value you want to assign to the variable is on the right. For example:
B = 200
Scalar Variables and Array Variables
Much of the time, you only want to assign a single value to a variable you have declared. A variable containing a single value is a scalar variable. Other times, it is convenient to assign more than one related value to a single variable. Then you can create a variable that can contain a series of values. This is called an array variable. Array variables and scalar variables are declared in the same way, except that the declaration of an array variable uses parentheses ( ) following the variable name. In the following example, a single-dimension array containing 11 elements is declared:
Dim A(10)
Although the number shown in the parentheses is 10, all arrays in VB Script are zero-based, so this array actually contains 11 elements. In a zero-based array, the number of array elements is always the number shown in parentheses plus one. This kind of array is called a fixed-size array.
Constants
A constant is a meaningful name that takes the place of a number or a string, and never changes. VB Script in itself has a number of defined intrinsic constants like vbOK, vbCancel, vbTrue, vbFalse and so on.
You create user-defined constants in VB Script using the Const statement. Using the Const statement, you can create string or numeric constants with meaningful names and assign them literal values. For example:
Const MyString = "This is my string."Const MyAge = 49
Note that the string literal is enclosed in quotation marks (” “). Also note that constants are public by default.
Within procedures, constants are always private; their visibility can’t be changed.
In the next post we will deal with constructs and arrays and various ways of looping in QTP(UFT).
Now you may go to VB Script and QTP – Part 2
Hi Ankur Sir,
I am new to automation testing , i want to learn HPE UFT – VB Scripting .
Kindly guide me how to proceed step by step as i have no knowledge of VB Scripting also.
kindly share links , videos , material , small programs for me to learn.
Hi,
How can I validate a combo box or list box or radio button or an input field in sql database using VB script? In sql everything are saved as tables . Is combo box also saved as table.. can you please give a sample script ….is a uft tester responsible for adding webelments to sql server or just validating it
…this area abt testing is not in web actually….
@Achu: As a UI tester, you need to validate what is appearing on the UI.
I didn’t get the part of adding webelements to sqlserver.
Hi Ankur,
I’m new to UFT and I just need to be pointed in the right direction. I need to be able to open a web application which sometimes creates a popup informational window that needs to be closed before proceeding. Could you provide me with an example of how that could be done?
@Phil: If the window pop-up at a specific point in the execution you can handle it using
if..else
statement. If it pops-up randomly during execution you need to use Recovery Scenarios.qtp+qtp=2qtp
above string how many qtp are there find with vb script in automation send me the script.
If StrComp(Coll,Substringe1,1)=0 and StrComp(Uni,Rel2,1 )=0 then
This condition is right or not can u please explain for comparing 2 string valuses
Hi Author,
I’m into manual Testing and would like to step ahead and learn Automation Testing.
I’m looking forward to learn Test automation through QTP and believe that you could be of great help in achieving that.
Looking Forward to your response.
Reagrds,
Himanshu
@Himanshu: Please go through this website. There is lots of material here. You may also check our online training program.
Would like to learn more about practical automation using QTP
No training centre can teach u 100%. You have to practice and broader your views.
Explanations is very smooth, easy to understand the basics. Good explanation along with examples.
Thanks,
Ankur
I am just to start with QTP, I don’t even know about VB scripting, Can you please guide me with step by step approach to take.
Will it be better first to learn VB Scripting and then go for QTP.
Please share some learning material:
Hi,
How to click on webtable cell value using DOM method
Rgds
Bhuvan
SwfWindow(“Application”).SwfWindow(“Global Meta Data Repository”).SwfComboBox(“cboCodeListType”).WaitProperty(“cboCodeListType”,”True”,3000)
—————————————————————————
this code not executing in wait property please help in code
Hi,
What is the best way to learn VB scripting for QTP.
Any tutorials? Do you teach?
I am just to start with QTP, I don’t even know about VB scripting, Can you please guide me with step by step approach to take.
Will it be better first to learn VB Scripting and then go for QTP.
Please share some learning material: namita.gandotra@esq.com
very much useful
Hi Ankur,
I am have been working into manual testing from 2 yrs and i have knowledge in QTP but i never used it.
I want to learn the scripting of QTP can u plz guidelines. I need to improve my skills in testing so, plz guide me.
Hi, Ankur
I am anjan,i searching for job. i have doubt in testing.how to connect html and web application page to qtp tool?.And one more is,how connect to test director in qtp tool and run to the script?.
Hi Ankur,
I am a tester and i worked in software testing for 1 years. I always manual test software and never use test tool before. Now, i want to learn QTP for my job but i don’t know how to start? Could you please show me the way to learn QTP sufficiently? Please help me.
Email id: jazzcool31@gmail.com
hi Ankur,
I HAve an idea to write vbscript and descriptive programs in QTP.
I need interview questions on QTP and more clear about QTP. So how find those things and how to do it.
Hi Ankur
I dont have any IT background but I am fast learner and expert in using facebook though (LOL). Would it be possible to start my career in QTP. If so, where can I start from? Do I need any other course before I take qtp training? Do I need to learn any programming language? or is it a career path for an expert programmer. Please guide me to how can I build a career in QTP? Thanks in advance
in the below program i am trying to count the no of parameters.but it gives me 0 even though i ve defined 2 i/p parameters in action properties.can any1 help me on this pls
Set qtp=createobject(“quicktest.application”)
qtp.Launch
qtp.Visible=true
qtp.Open “D:\Tests\action parameter”
a=qtp.Test.Actions.Count
msgbox a
For i=1 to a
msgbox qtp.Test.Actions.Item(i).Name
msgbox qtp.Test.Actions.Item(i).Type
Next
p=qtp.Test.ParameterDefinitions.count
msgbox p
For i=1 to p
msgbox qtp.Test.ParameterDefinitions.Item(i).Name
msgbox qtp.Test.ParameterDefinitions.Item(i).Type
msgbox qtp.Test.ParameterDefinitions.Item(i).DefaultValue
Next
qtp.Quit
how to compare 2 same common strings?
for Example
a= “sai is a good boy”
b=”Ravi is a good boy”
to print same words that is “good boy”.
Hi this is venkat.
I am new to QTP. I have some doubts in qtp. How to communicate with you. this is the first time i am using this site and i know you are QTP king my friends told.. please tell me how to communicate with you?
I really learn a lot from these articles. Thanks again Ankur.
Hello Ankur,
Am into Seibel Testing i got a chance to use QTP in Seibel so please tell me how to make addin of Seibel and how to use descritive program in sebel.It will be great Helpful if you provide me a way to it.
Thanks and Best Regards
Jyothi Gombi
Hi Ankur, is nice to visit again this blog, in this case I come to you just to ask one thing, as I see you suggest go to learn VB Script and for me it is ok but I want to know why you do not suggest learn Visual Basic? Thanks for your time.
Hi ankur
i need script for the below scenario ,
1. open google .com
2. search for term “test” in google search box and click on button.
3. verify the count in the search results page ,
4. close the browser.
5. send the test results to my persional email address automatical with out manual work.
note:
———
when i run this script next time , the count will varies , so i want to write a condition and report that result in test results report ,
Hi Ankur,
Ankur i want to know that wats the best way to write an automation script in QTP. Actually i am a beginner so am totaly scared about to write a script. So please help me out..
good info
Ankur
I am interested in knowing about the QuickTest Professional 9.0 Specialist Exam. I want to know about
1) cost of the exam
2) is it a web based
3) what kind of questions will be asked like is it a multiple choice or theory or practical
4)How much knowledge do you need in qtp to crack this exam.
Please email me at thilakprasadk@gmail.com
Thank you very much for sharing vb script learning site….i shall be grateful to you.
I am interested in knowing about the QuickTest Professional 9.0 Specialist Exam. I want to know about
1) cost of the exam
2) is it a web based
3) what kind of questions will be asked like is it a multiple choice or theory or practical
4)How much knowledge do you need in qtp to crack this exam.
Please drop a mail to mailbox ID:viji.monisha@gmail.com
hi rajesh,
I am beginer in QTP 9.5,
So, i want to learn & write the vbscript in QTP,what is the procedure to write the script & run the same .plz reply me on
hi Ankur,
I am beginer in QTP 10.0,
So, i want to learn & write the vbscript in QTP,what is the procedure to write the script & run the same .plz reply me on
hi Ankur,
I am beginer in QTP 10.0,
So, i want to write the vbscript in QTP,what is the procedure to write the script & run the same .plz reply me on
Thanks
Hello I am in New York is there a school here in NY that offers QTP classes? If not where online can I take a QPT class and be able to actually use QTP and its examples? thank you
Hi Ankur,
Ankur i want to know that wats the best way to write an automation script in QTP. Actually i am a beginner so am totaly scared about to write a script.Right now i got clearded 2 technical rounds in niit technology and others company but niit technology have to 20 days time prepartion for scripting langauges. So please help me out..
Hi ankur,
Thais is Manish here,i am working in manual testing but want to work in qtp so tell me how i can learn QTP….
Thanks,
(1)What is functions in QTP?
(2)How do we use it?
(3)What is the examples of functions?
(4)How do we call the functions?
(5)What is generic object in descriptive programming and how it it created?
Great job Ankur!
hello ankur…
this is richa here.
i’m working on manual testing…..
i’ve never ever worked on any automation tools….
but today when i read ur article i found it very interesting….
now i really want to learn QTP and implement it too.
thans a lot ankur….
Hi,
i want to know that whats the best way to write an automation script in QTP. i am a 3+ yrs experence in manual testing but want to upgrade my skill in automation. i also done automation course but not clear, so am totaly scared about to write a script. So please help me.
Can anyone send me a total QTP Scripting eBook in the form of pdf file.Please co-operate me.Send to my mail id.
My mail id-girishmshr7@gmail.com
Thank you
Hi all,
can you able to tell how to invoke recovery scenario by writing vbscript(method)
Hi,
Ankuar,
i have 5 years exp in Manual testing right now i interest to study in Automation like winrunner and QTP. Could you please guide me through?
Thanks
Prit
Hi ankur ,
I have a question.
Is it possible to resize a single dimensional array without losing the data
Ex:
dim a(3)
Redim preserve a(10)
it is not wokring for me……..?
But
dim a(3,5)
redim preserve a(3,10)
it works.
Hi Ankur ,
I have a question.
How to resize a single dimentional array, Is it possible to resize it withut losing the data.
Ex:
dim a(5)
redim preserve a(10)
This is not working….?????
Hi,
Ankuar,
i have 2 years exp in Manual testing right now i interest to study in Automation like winrunner and QTP. so please send me the QTP testing books
Hi Ankur,
Hope you are doing good. Could you please send me couple of VB scripts for QTP use.
My Email address is imran.joy@gmail.com
Hi Ankur
I Want to learn QTP…pls help me
i want to study testing…
Rich
Hi Ankur
Can u ples send me some easy examples of qtp scripts .so that i can do some R&D and learn about the process.I need some scripts in whoch VB scripting is Used.
MY email ID is
xavierstacy0@gmail.com
Thnaks In advance
Hi Ankur,
I am a tester and i worked in software testing for 2 years. I always manual test software and never use test tool before. Now, i want to learn QTP for my job but i don’t know how to start? Could you please show me the way to learn QTP sufficiently?
hi,
i know the qtp but i never use it in any live project ..so pls help me to use the QTP in live projects.If u have any links regarding live project with QTp pls provide me..this is my mail id richa.singh.mn@gmail.com
Hi Ankur,
I am have been working into manual testing from last 1.5 yrs & have sum knowledge of QTP but i never used it.
I want to learn the scripting of QTP .can you plz provide the guidelines for beginner.And also wnt to know is there any tool we can use for Microsoft Dynamics AX since my platform is AX.
Thnxs
mail id:vaishali.bankar@gmail.com
hi ankur
m new to testing n m trying 2 learn qtp 9.0… i hv read sm ppt of QTP but wanna learn hw 2 write scripts….cud u send me sme material or documents n pls suggest me any link where i can find any of the samples.
My Email ID is
suruchivirmani@gmail.com
Hi Ankur,
I am new to testing. I am interested in learning QTP..
Pls guide me how to start and how
to use QTP in live projects.
Thanks in advance.
Hi Ankur ,
I was into Manual testing all these days , But Now My Company has permited me to use Automation tool, Can we test D2K Applications Using QTP, If Yes, Can I know the Steps and Procedures for testing. i have QTP 8.2 Can i Install this Version or do u recommend other Versions ?
Hi Ankur,
I am trying to download the free trail version of QTP but could not do it. Please help me how to install the free trial version of QTP
Hi Ankur,
In a recent interview i was asked a question to write a VBScript for this
If provided the salary amount (ask for salary amount) and
calculate and output tax on the income using VB Script
Taxable income Tax on this income
“$0 – $6,000” Nil
“$6,001 – $34,000” 15c for each $1 over $6,000
“$34,001 – $80,000” $4,200 plus 30c for each $1 over $34,000
“$80,001 – $180,000” $18,000 plus 40c for each $1 over $80,000
“$180,001 and over” $58,000 plus 45c for each $1 over $180,000
I wrote the code using select case, i’m not sure is i was correct.
Could you please tell how to put this VBScript
I can use QTP to create automated tests using the GUI, but I do not have an understanding of VBScript and therefore I’m looking for a book which I can use to form the foundations and compliment the series of VB Script and QTP – Part1, Part 2, Part 3, etc on this website. Can you please suggest the most relevant book for an absolute beginning with no programming experince please.
@Shreyansh, umangi: You can hone your skills on the windows based and web based applications that comes pre-installed with QTP.
Hi ankur,
Can you please please tell me a sample site which i can start automating using QTP where i can exercise VBscript most as i m totallw new to it.
hi,
i know the qtp but i never use it in any live project ..so pls help me to use the QTP in live projects.If u have any links regarding live project with QTp pls provide me..this is my mail id malagouda1008@gmail.com
Hi Ankur,
i want to know from where I have to start QTP scripting.
@adithya.m.kumar@gmail.com:
hi pass the array to your function available in the function library..
Dim myarray(2)
myarray(0) = “sunday”
myarray(1) = “monday”
myarray(2) = “tuesday”
Call xzy(myarray)
hi Ankur,
This is a great post,
although.. i’ve one question
while declaring fixed size arrays do we have to specify only integer value as its subscript value?
e.g.,
subscriptval = 3
dim MyArray1(subscriptval)
cant we decalre array as above?
thanks in advance,
Prashant
Hi Adithya Kumar,
Your VB script code looks to be perfect. Pls try executing it again.
Thanks
Bharathi
Hai
How to declare array variables as Global varibles.kindly let me know its urgent.
I created a code but its showing type mismatch error.Please chk this .
QTP Code
———————-
Dim MyArray(2)
MyArray(0) = “Sunday”
MyArray(1) = “Monday”
MyArray(2) = “Tuesday”
Call callweekdays()
Function Code(QFL)
—————-
(Added to Test Resources)
Public Function callweekdays()
For i=0 to Ubound(MyArray)
Msgbox MyArray(i)
Next
End Function
After execution its showing type mismatch error.
Kindly reply to this mail ID “adithya.m.kumar@gmail.com”
Thanks
Adithya Kumar
Hello …
this is the link where u can easily learn the vbscript..
Vandana`
Hi there,
This is Ashish. I m new to QTP and i wanna know how to use VB script in QTP pls suggest me any link where i can find any of the samples.
My Email ID is
ashuniks@gmail.com
Hi Ankur,
I am in a big problem i.e my system is restarting when i start to record any application.
My system is working for QTP8.2 but when installing 9.1,9.2 or 9.5 it is the problem.
To out of this i have formated the system once even though it is restarting again.
Plz send some solution to over come this to me on balur.sangamesh@gamil.com
PLzzzzzzzzzzzzzzzzzzzzzzzzzz
I have gone through the VBScript material you have provided in this site. It is very clear and easy to catch all those defined. I want to write and execute some scripts on my own. Is there any VBScript editor available for free. If it is, please tell me the link from where I can get. Or otherwise please tell the tool to write and execute VBscipts. But I don’t want to test through notepad and IE.
Nikhila/Srinivas
Please mail me the details that you had asked for to my id 2411985@gmail.com
Me too interested to know.
Thanks
@nimi: Please check the link-QTP certification details- given on right hand side
I am interested in knowing about the QuickTest Professional 9.0 Specialist Exam. I want to know about
1) cost of the exam
2) is it a web based
3) what kind of questions will be asked like is it a multiple choice or theory or practical
4)How much knowledge do you need in qtp to crack this exam.
Please email me at nishritha1018@gmail.com
Hi Ankur,
Right now am using 9.5 version of QTP and am automating swing based client server application.Sometimes QTP is not recognizing the same object which it recognised in its previous runs.
can you suggest a solution for this iisue.
thanks
dhruv
Can i get a reply for this Ankur..
Nikhila said…
Ankur
I am interested in knowing about the QuickTest Professional 9.0 Specialist Exam. I want to know about
1) cost of the exam
2) is it a web based
3) what kind of questions will be asked like is it a multiple choice or theory or practical
4)How much knowledge do you need in qtp to crack this exam.
Please email me at princess_barbie6@yahoo.com
12:43 AM, October 05, 2007
Thanks
Sriniv
Hi Ankur,
I am interested in knowing about the Quick Test Professional 9.0 Specialist Exam. I want to know about
1) cost of the exam
2) is it a web based
3) what kind of questions will be asked like is it a multiple choice or theory or practical
4)How much knowledge do you need in qtp to crack this exam.
If u have any website send me my mail Address.
nickychoudhary@gmail.com
Hi Guys,
Just would like to mention few things here.
Don’t be scared of any automation tool.Once u get hold of concept then they are prety same. Move in follwoing way:
Go throuh User guide it has everything in it.
1. Understand the QTP framework.
2. Understant the UI of QTP.
3. Practice lesson by lesson the QTP functionalization namely:
a. Object declaration.
b. Create a UDF file (U need to include this in mail file from where u run it)where u can declare global variables and write User defined functions and proceedures.
c. record test cases.
d. learn cla ofss each object like text box, browser etc is identified by QTP.Once u record u will be able to see this.
e. Lear how to add check points,etc.
f. VB script is nothing but VB language.Learn some main functions like getting windowhandles, control structure, how to put custom messages in res file.
g. Synchronize test.
U will not learn it in day but if u go with pateince and give it about 2 months u will be become an intermediate expert.
Don’t go into too complicated things initially. Like checking is IIS is running wtc.U can do that later.
Best of luck.
Karan
kbsingh1@gmail.com
Hi there,
This is Pranav DAve I m new to QTP and i wann know how to use VB script in QTP pls jsuggest me any link where i can find any of the samples.
My Email ID is
parth.engineer@gmail.com
Set RepositoryTo = CreateObject(“Mercury.ObjectRepositoryUtil”)
RepositoryTo.Load PathOfTSR
Hi Ankur,
Appreciate your help for creating this blogger.I’m using QTP 9.2.If I need to run the tests by writing the scripts,whats the command for calling object repository.(as this will help the application in identifying the objects during testing)In 8.0 we used the following syntax
App.test.settings.resources.objectrepositorypath = “D:\bank_new\bank_obj_repo\bank.tsr”
where App is the variable defined as
Set App = Createobject(“Quicktest.application”).
Please help me with this.my email address is prasannamadhuri@gmail.com
Thanks in advance
Hi Ankur,
I know Winrunner and currently learning QTP 9.2 on my own. Not sure how to go ahead with it as i dont know VB Scripting.
Also i need to know abt the certification… wht is it? How is it? Does it have any weightage? How is the certification help us? Cost and abt the exams of it?
Please let me know – khalidahuda@gmail.com
Thanks a lot…
I want to know what certification i need to do in Testing.
What is the best method to learn and practice VBScripting.
Please let me know via email – khalidahuda@gmail.com
hi this is raj,
we r trying to get the sum of price of tickets (in flight application of QTP)with keeping order numbers in data table.
we want to add the total of each order with their next order and so on.
i=Window(“text:=Flight Reservation”).WinEdit(attached text:=Total:”).GetVisibleText
msgbox i
we r unable to write further so
please help us if u can.
u can send me to rajendra_js@yahoo.co.in
with thanks
CAN ANY BODY POST ME SOME SCRIPS PREPARED ON ANY WEB DOMAINS. SO THAT I’LL PRACTICE. YOU CAN MAIL ME TO MY MAiL ID: kumar.k111@gmail.com
Thanks Ankur…
Thanks a bunch Ankur..!!
good post
hi this is vish
my request is to send a complete flow of vb script for any web appl.
for one flow or scenario.
thanking u.
pls mail me to kvishnu1281@yahoo.co.in
hi this is vish
my request is to send a complete flow of vb script for any web appl.
for one flow or scenario.
thanking u.
I am interested to know about testing cerftications like CSTE. I want to know about cost of the exam,exam pattern,how much knowledge do we need for this exam all that stuff.
Please email me at buna.tester@gmail.com
This post is indeed very useful & Descriptive .Thanks
I am interested to know about testing cerftications like CSTE. I want to know about cost of the exam,exam pattern,how much knowledge do we need for this exam all that stuff.
Please email me at neehavijay@gmail.com
Hi Ankur
I am interested in knowing about the Quick Test Professional 9.0 Specialist Exam. I want to know about
1) cost of the exam
2) is it a web based
3) what kind of questions will be asked like is it a multiple choice or theory or practical
4)How much knowledge do you need in qtp to crack this exam.
If u have any website send me my mail Address.
Please email me at srinivas_4444@yahoo.com
Hi Ankur,
Thank you very much for this wonderful blogspot… Continue this good work for the benefit of so many… thanks a ton… I specially appreciate the style of your writing. It has inspired me to read about QTP(I am a kind of person who really runs away from technical stuff). But your blog is truely magnificient.
Best Regards,
Vandy.
i have one year exp in manual testing. web testing.. and also i know little bit about QTP.(how to use & all). but i never used in any project..
so wt to do now..hw to learn more than this..
plz inform mr to my mail id..(tc.raghavendra@gmail.com)
@ Anon:
You can refer my posts on Differences in QTP versions and about frameworks
Refer http://www.geekinterview.com/question_details/17367 for difference between TD and QC
@ Abdal:
You can use QTP Expert View to practice on VB Script.
Dear Ankur,
I have gone through the VBScript material you have provided in this site. It is very clear and easy to catch all those defined. I want to write and execute some scripts on my own. Is there any VBScript editor available for free. If it is, please tell me the link from where I can get. Or otherwise please tell the tool to write and execute VBscipts. But I don’t want to test through notepad and IE.
HI
can u send me below details to k.malakondaiah@gmail.com
1.Differences in qtp versions.
2. Differnce in testdirector and qualitycenter
3. Briefly explain abt qtp frameworks and which is the better one
thank you
HI
can u tell me
1.Differences in qtp versions.
2. Differnce in testdirector and qualitycenter
3. Briefly explain abt qtp frameworks and which is the better one
thank you
hi am alby smiles. i want to know about qtp certification, and the mock questions. can u plz provide me with this details
hi nikhila,
i m the begineer of learning QTP 8.2. which site is best one to learn properly with VBscript..
Hi Ankur,
Ankur i want to know that wats the best way to write an automation script in QTP. Actually i am a beginner so am totaly scared about to write a script. So please help me out..
Ankur
I am interested in knowing about the QuickTest Professional 9.0 Specialist Exam. I want to know about
1) cost of the exam
2) is it a web based
3) what kind of questions will be asked like is it a multiple choice or theory or practical
4)How much knowledge do you need in qtp to crack this exam.
Please email me at princess_barbie6@yahoo.com