How can we automate Capthca on registration or any contest
forms ?
Is it possile to Automate Webpages with Falsh using QTP..?
Answer / guest
flash is a . net product so we are able to test the
application using QTP
| Is This Answer Correct ? | 0 Yes | 0 No |
How to manage a drag drop event in the qtp
What is the parameterization? Give one example?
suppose in the middle of the project QTP will not work properly, then what do u do? and ur team?
w is fragmentation and paging
difference between GetRoProperry and GetToProperty.and where we've to use exactly those properties
there are having 10 checkboxes..how can i check only first 5 check boxes by using descriptive programing..
Where can i get the QTP tutorials. I wanna move to automation testing. Is there any book or URL, where i can find the source to read...
How do we edit the script in QTP. Anybody can explain in detail..Thanks in advacne...
How many types of recording modes in qtp? Describe each type with an example where we use them?
I'm having a problem to get the status(pass or fail) during runtime for every iteration ran, and must get the results stored to an excel sheet if possible.
Tell some commonly used Excel VBA functions?
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