why qtp supports vbscript? and not for others just like
cgi,phython,shell,perl,html and all..
Answer Posted / vijaykumar
why vbscript supporting :
1) Qtp support windows platform and it is very easy to handle the vb.because at the time of installation vb framework also installing.
2) example:creating folder manually in system but manually is crating but some script also running in background.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is impact analysis on regression testing?
How to connect the remote desktop using QTP 9.2 explain the method or procedure?
how can we preform retesting(DATA driven test) using function please gine the code for loginpage
What is data driver in qtp? Where we use it?
What do you mean by iteration?
Which environments are supported by hp qtp?
Discuss quicktest professional (qtp) environment?
Which HTML specification will be adhered to? How strictly? What variations will be allowed for targeted browsers?
Where you get the run time data table?
Can any suggest me what is exposure testing?
What is object spy in quicktest professional (qtp)?
What is the purpose of loading qtp add-ins?
How do you do batch testing in wr & is it possible to do in qtp, if so explain?
Explain about datafile/verification of date file when file is not available in local system?
I have written a code to fetch values fro access db and place in the fields. Iam using GetROProperty to fetch runtime values. Now i want to add runtime values to the access db in field v3. please help me. Its not writting in the db. Option explicit Dim con,rs,db,c Set con=createobject("adodb.connection") Set rs=createobject("adodb.recordset") con.Open "Driver={Microsoft Access Driver (*.mdb)};dbq=D:\Sales.mdb" rs.open "select * from tax",con Do while not rs.eof Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("incost").Set rs.fields("v1") Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("intax").Set rs.fields("v2") c=Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("outtax").GetROProperty("value") rs.MoveNext print c Loop Do while not rs.EOF rs.EditMode rs.Fields("v3").Value="3" rs.Update rs.MoveNext Loop Set rs=nothing Set con=nothing