What is the Diff between Image check-point and Bit map
Check point?
Answer Posted / sai
bitmap is the binary representation of an image. Through
bitmap check point you can check digital
signatures ,barcodes etc. But through image checkpoint you
can check a pictorial image.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
how we connect 1. qtp9.2 to the quality center9.0? 2. Load runner8.0 to the quality center9.0
What are the factors on which script execution time is dependent?
I am Facing Issues with learing datepicker 1)when i first learn datepicker as current system date . 2)if i wanna runtime datepicker value it gives error
when will you do debug your script? and explain that process?
Which environments are supported by hp qtp?
What is the difference between run time object and test object?
What are the methods used in UFT to handle exceptions or run-time errors?
What is the Command used to start the QTP
What is the default object synchronization timeout in qtp?
When and why to use descriptive programming?
What do you to script when objects are removed from application?
How to connect the remote desktop using QTP 9.2 explain the method or procedure?
How to creating an output value using quicktest professional?
if there is a web table of having row and colmns.a button is placed at 2nd row's 3rd column which is worked for both edit and delete..how to write script for the button to test both operation on the web table using desriptive programing.. plz help me on script wheather using getroproperty Q2)what is the command for taking valiue from a web table in qtp
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