There are two type of recording in WinRunner. i. Context Sensitive recording records the operations you perform on your application by identifying Graphical User Interface (GUI) objects. ii. Analog
Latest Answer : their r 3 level of recording in QTP.1)Normal2)Analog3)Low level Recording ...
There are 2 modes of recording in WinRunner i. Context Sensitive recording records the operations you perform on your application by identifying Graphical User Interface (GUI) objects.ii. Analog recording
Latest Answer : i) Context Sensitive Mode: Records the application by learning Graphical User Interface objects with all its classes, logical names and physical properties.ii) Analog Mode: Records point to point mouse movements, Keyboard entries with all its X and Y ...
When you create a standard database checkpoint using ODBC (Microsoft Query), you can add parameters to an SQL statement to parameterize the checkpoint. This is useful if you want to create a database
Latest Answer : kindly elaborate a bit about your parameterizing DB CHECK POINTS..I m lost as HOW TO DO IT... ...
A parameterized query is a query in which at least one of the fields of the WHERE clause is parameterized, i.e., the value of the field is specified by a question mark symbol ( ? ). For example,
db_connect i. to connect to a database db_connect(, ); b. db_execute_query i. to execute a query db_execute_query ( session_name, SQL, record_number ); record_number
Ddt_open i. Creates or opens a datatable file so that WinRunner can access it. Syntax: ddt_open ( data_table_name, mode );data_table_name The name of the data table. The name may be the table variable
You can use two types of call statements to invoke one test from another: i. A call statement invokes a test from within another test. ii. A call_close statement invokes a test from within a script and
A user-defined function has the following structure: [class] function name ([mode] parameter...) { declarations; statements; }b. The class of a function can be either static or public. A static function
The class of a function can be either static or public. b. A static function is available only to the test or module within which the function was defined. c. Once you execute a public function, it
in: A parameter that is assigned a value from outside the function. b. out: A parameter that is assigned a value from inside the function. c. inout: A parameter that can be assigned a value from outside