WinRunner

  Home  Testing  WinRunner


“WinRunner Interview Questions and Answers will guide us that HP/Mercury Interactive WinRunner is an automated functional GUI testing tool that allows a user to record and play back UI interactions as test scripts. As a Functional test suite, it works together with HP QuickTest Professional and supports enterprise quality assurance. It captures, verifies and replays user interactions automatically, so you can identify defects and determine whether business processes work as designed.”



67 WinRunner Questions And Answers

61⟩ What are the two modes of recording?

There are 2 modes of recording in WinRunner

1. Context Sensitive recording records the operations you perform on your application by identifying Graphical User Interface (GUI) objects.

2. Analog recording records keyboard input, mouse clicks, and the precise x- and y-coordinates traveled by the mouse pointer across the screen.

 204 views

62⟩ How do you view the contents of the GUI map?

GUI Map editor displays the content of a GUI Map. We can invoke GUI Map Editor from the Tools Menu in WinRunner. The GUI Map Editor displays the various GUI Map files created and the windows and objects learned in to them with their logical name and physical description.

 204 views

64⟩ What do you verify with the database check point custom and what command it generates, explain syntax?

* When you create a custom check on a database, you create a standard database checkpoint in which you can specify which properties to check on a result set.

* You can create a custom check on a database in order to:

o check the contents of part or the entire result set

o edit the expected results of the contents of the result set

o count the rows in the result set

o count the columns in the result set

* You can create a custom check on a database using ODBC, Microsoft Query or Data Junction.

 248 views

66⟩ What do you verify with the sync point for object/window bitmap and what command it generates, explain syntax?

You can create a bitmap synchronization point that waits for the bitmap of an object or a window to appear in the application being tested.

During a test run, WinRunner suspends test execution until the specified bitmap is redrawn, and then compares the current bitmap with the expected one captured earlier. If the bitmaps match, then WinRunner continues the test.

Syntax:

obj_wait_bitmap ( object, image, time );

win_wait_bitmap ( window, image, time );

 243 views