Answer Posted / narender reddy alala
as of my knowlege OR size is 2MB.(according to qtp 8.2)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Functions call by reference and call by value. i want the diff b/n these 2 and how will be the script for this?in which situation we use these 2..?pls explain me clearly
How do you check ticket cost and ticket number in flight application?
How to test login module with different username and password by using data driven testing in QTP?
What is an expert view and keyword view?
Is QTP supports Unix. If yes, then how the test automation is done?
What is the default object synchronization timeout in qtp?
Is virtual object supported in low level recording mode?
any body can you help me what is the script to automate an comand promt
Can anyone share/send me QTP 8.2 Crack as I had it before but now it's virus affected. Pls send me on Sawale.vijay@gmail.com Thanks, ~Vijay
In qtp, explain what is qrs file?
Explain runtime dynamic settings?
What do you to script when objects are removed from application?
What is object spy in quicktest professional (qtp)?
whow much strong on VB and C?
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