How to use Regular Expressions in QTP? give an example.
Answer Posted / mahesh
Thax uday to give valuable information about regular
expression.
| Is This Answer Correct ? | 15 Yes | 15 No |
Post New Answer View All Answers
Is there any pdf or online book for QTP Scripting? Let me know more about QTP Scripting.
For QTP Test Engineer, What is his contribution to the Project? Means, As as automation test engineer what is his role in the current project?
how to test load test and block box testing an a web based application pls give ans briefly
i am new QTP... please tell me automation frameworks , types & for whiich type of applications frameworks are used & how to generate script in keyword driven framework
The hybrid framework can be implemented for any application. Is it true?
.have you ever written compiled module? if yes , tell me about some of the function that you wrote.
what is the difference between rational rose and QTP? WHICH TOOL IS BETTER TO LEARN? PLEASE SEND ME AT sana_50218@yahoo.com sandeep@epuratech.com
What is synchronization point in QTP?
what are the mandatory properties for a tex boxc (scenario?)
Explain the concept of how quicktest professional (qtp) identifies object?
What are the advantages of a Hybrid framework?
How will you test a keyboard?
in qtp if we record a object and we record the object using virtual wizard then by which way the object is recognized that means recorded
What are the differences between table and db checkpoints?
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