Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the Diff between Image check-point and Bit map
Check point?

Answers were Sorted based on User's Feedback



What is the Diff between Image check-point and Bit map Check point?..

Answer / amit tiwari

Image Checkpoint only check the property of an image like
its height, width,?.. whereas Bitmap checkpoint compares or
check image pixel by pixel

Is This Answer Correct ?    8 Yes 1 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / jyothi

Image:checks the property values of an image
check that image source file is correct

Bitmap:checks an area of a web page or application after
capturing it as a bitmap
check that the web page or application is displayed as a
expected

Is This Answer Correct ?    5 Yes 1 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / me :)

Image checkpoint is a standard checkpoint which can be
applied on a image control in Web based application.
Bitmap checkpoint can be applied on any control.
In Image checkpoint, the properties of the image control
like "source path of the image" can be checked.

Is This Answer Correct ?    4 Yes 2 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / narendraa

Image checkpoints enable you to check the properties of a
Web image.QuickTest captures the specified object as a
bitmap, and inserts a checkpoint in the test or component

Is This Answer Correct ?    2 Yes 1 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / pd

Image checkpoints enable you to check the properties of a
Web image. You can check an area of a Web page or
application as a bitmap.

Is This Answer Correct ?    1 Yes 0 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / ajay kumar

image checkpoint is we have to check the property value of an images like width and height etc......
bitmap checkpoint is we have to check the area of an application after capturing the image like image is captured by pixel by pixel

Is This Answer Correct ?    1 Yes 0 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / kv

let us define what is a bitmap first
bitmap: a bitmap is a binary representation of an image any
image captured.
bitmap check point: a bitmap checkpoint checks for the
binary representation of the web page
image check point: this checks for the complete image in
terms of the image height, font and other physical
attributes of the image captured.image check point checks
the image source file.

Is This Answer Correct ?    2 Yes 2 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / bala

Question is about the difference between Image and Bitmap
checkpoints and not the definition of the checkpoints.

Here is the difference.

1. Image check point is used to check the property value of
an specified image cosidering the Image is an object. But
bitmap check point is not going to retrive any property
value of the Image rather it verifies the defined area of a
webpage or application as a bitmap and it won't be used to
verify the property values like image check point.

Hope this given the answer. Let me know if anyone need an
example.

Is This Answer Correct ?    1 Yes 1 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / anu

Image chech point is used checking properties of the
image.image chech point the\rough activescreen.bitmap chech
is used checking complete or part of the bitmap.bitmapchech
through activescreen,through application

Is This Answer Correct ?    0 Yes 0 No

What is the Diff between Image check-point and Bit map Check point?..

Answer / alpna bharti

Image checkpoints enable you to check the properties of a Web image. You can check an area of a Web page or application as a bitmap. While creating a test or component, you specify the area you want to check by selecting an object. You can check an entire object or any area within an object. QuickTest captures the specified object as a bitmap, and inserts a checkpoint in the test or component. You can also choose to save only the selected area of the object with your test or component in order to save disk Space For example, suppose you have a Web site that can display a map of a city the user specifies. The map has control keys for zooming. You can record the new map that is displayed after one click on the control key that zooms in the map. Using the bitmap checkpoint, you can check that the map zooms in correctly.
You can create bitmap checkpoints for all supported testing environments (as long as the appropriate add-ins are loaded).
Note: The results of bitmap checkpoints may be affected by factors such as operating system, screen resolution, and color settings.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More QTP Interview Questions

w is time parameter

1 Answers   Syntel,


Can i get a simple example exercise for update run mode for sample flight application......... In qtp when i try to run the test in update mode.. Auotmation> update option is disabled............ Pls let me know ................. Thanks in advance.....

3 Answers  


How to change the run-time value of a property for an object?

3 Answers   Crea,


Hi Friends, I'm new to QTP. I want to write a function in QTP for below senario. In an Excel sheet column B, I Have 10 Url/Links, and in Colum A there is a Flag as Y and N. My test should run only on those iterations which are flagged as Y. Please help, Thanks

6 Answers  


What is a Run Time Data table?

1 Answers  


How should I get results when I run scripts in a Batch mode

1 Answers   TCS,


What is RTM (require ment tracebulity marix) fromate?

0 Answers   Wipro,


In a yahoo web Application there are 65 links.one day it will opens 50 links and another day it will open 55 links.In this scenerio write Descriptive programing for Automation?....Pls write the code for this scenerio.

1 Answers   College School Exams Tests, UHG,


Hi, I have a login page. To login in that page I need to have a valid username and password, which is stored in database. I imported that table to my DataTable in QTP (Global sheet). Now I need to write a code in qtp so that I can login only with valid username and data. my condition is : I want to get username and password from inputbox(which i did) and click on login button- which should verify the datatable for username and password and if value is present only then lofin else stop the testing. DataTable contains columns : LoginName and Password Code: Rowcount= DataTable.GetSheet("Global").GetRowCount msgbox "RowCount= " &RowCount,1 CurrentRow= DataTable.SetCurrentRow(1) Do Browser("").Page("").Frame("Frame").WebEdit("ctl10$ct l00$ctl00$UserName$ctl").Set DataTable("LoginName",1) Browser("").Page("").Frame("Frame").WebEdit("ctl10$ct l00$ctl00$Password$ctl").Set DataTable("Password",1) Browser("").Page("").Frame("Frame").Link("Login").Cli ck CurrentRow=CurrentRow+1 Loop Until CurrentRow>Rowcount Can anyone help? Thanks, Priya

3 Answers  


How does you pass optional arguments in qtp?

0 Answers  


How to record object in runtime. I am testing one Image website in which every time image change on home page.so if i records the image list but during running image get change, and QTP gives error

1 Answers  


how to associate object repository during runtime in qtp

1 Answers   Deloitte,


Categories