Answer Posted / kondalu
parameterize three ways in qtp
1.keywordview
2.experview(parameterisation)
3.manually scripting
1.expertview(parameterisation):
any application open for example calculator
and recording that application
vbwindow("form1").activate
vbwindow("form1").vbedit("value1").set "10"
vbwindow("form1").vbedit("value2").set "20"
vbwindow("form1").vbbutton("add").click
data table as import or automatically created
v1 v2 ev
10 20 30
20 30 50
30 40 70 datatable to be created
in tools option datadriver(no recording script
datadriver is disable and recording script data driver is
enable)
datadriver is selected after (for example
10 1 0) go parameterise and select parameterise option
and select v1 click on ok button first v1 is parameterised
(parameterise means 1 value changed in 0 and 0 value
changed in 1) and same as v2
finally click on recording as go to checkpoint and
select standard check point click on result and to go
parameterise and parameterise options select ev click on ok
button
(second recording in checkpoint in result in script as
beging cursor checkpoint as begining statement but finally
datatable 3 lines created first line will be correct ,2nd
and 3rd line will be error.
but cusor will be ending means 2nd recording as
chekpoint and select standard checkpoint selecting result
option "vbwindow("form1").check checkpoint("result")"
this statement as ending data table in 3 lines are passed
and result willbe passed
(this is one type of method)
vbwindow("form1").vbedit("value1").set datatable
("v1",dbglobalsheet)
vbwindow("form1").vbedit("value2").set datatable
("v2",dbglobalsheet)
global sheet means in qtp datatable in
first in globalsheet (dbglobalsheet=1)
vbwindow("form1").check checkpoint("res")
vbwindow("form1").vbedit("value1").set datatable
("v1",1)
vbwindow("form1").vbedit("value2").set datatable
("v2",1)
datatable("v1",1) as given in a
datatable("v2",2) as given in b
MANAUAL SCRIPT IN PARAMETERISATION
a=datatable("v1",1)
vbwindow("form1").vbedit("value1").set a
b=datatable("v2",1)
vbwindow("form1").vbedit("value2").set b
vbwindow("form1").check checkpoint("res") IN THIS statement
begining datatable in 3 lines 1 line pass 2nd and 3rd line
failed
ending three lines will be passed
| Is This Answer Correct ? | 4 Yes | 8 No |
Post New Answer View All Answers
what type of values given to objects. EX::Set oBrowser=Description.Create oBrowser(“micclass”).Value=”Browser”
How smart identification works in qtp ?
What is exact meaning of Database Checkpoint in QTP 9.2 and what are the different types of the database check points?
Hi ,Can any one pleas explain how to test splash objects using QTP?
Why qtp the best testing tool?
Is any limitation to xml checkpoints?
How many types of run modes are there in qtp?
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
Call to copy of an action and call to existing action… i know the diff but in real project how to use..? i want live scenario.pls help me..
How we can use the database checkpoint on a java web based application in which the database connectivity is done using JDBC->Pure Java type (in this type there is no need to create a DSN). At present in QTP we can fetch database values using checkpoint only through DSN. Is there any programming for this if we don't have DSN (ODBC)
Give the syntax to import/export xls into qtp.
What is difference between Recording time object identification and Run time (Execution) time.
is there any addin for remedy user application
I am a newbie to QTP / Automation testing. I want to develop a script that creates a data file automatically with proper headings using VBScript in QTP.
What are the types of properties that quick test learns while recording?