How many lines of code in each script of QTP?
No Answer is Posted For this Question
Be the First to Post Answer
In my script there is a link(e.g. 'My Page') when I execute the script sometimes(not every time) QTP throws an error that "My Page(as link)" not found. Pleaase tell me where I need to update
What is the use of running the scripts in Hidden-mode in UFT?
What are the methods of the TextStream object that are used for reading from a text file?
how we will use output values in qtp? is there any possibulity by descriptive programming?
What is Modular framework and Keyword drive framework? Explain
Can someone tel additonal features which has been included under QTP 9.0 which is not there in 8.2 version?
Set DR= CreateObject("Mercury.DeviceReplay")
Hi, How to export the Checkpoints and Output values(Test area output values) from Object Repository to Excel
what is difference between Mandatrary proparties and Assistive proparties? Explain
banking domain description for software tester for interview
Please help me by providing the License key for QTP 9.2, at guru_aarya@yahoo.co.in Best Regards Gururaj.B
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