Among the 4 capture levels, Complete, Partial, Minimal,
None. which one is mostly used?
Answer / moreshwar deshmukh
It is totally depend on the project requirement and project
scope. But many time I seen that people uses the None
capture level. Because most of time we uses the frame work
for the automation that why we can track the problem much
easily.
Complete — Captures all properties of all objects in the
application’s active window/dialog box/Web page in the
Active Screen of each step. This level saves Web pages
after any dynamic changes and saves Active Screen files in
a compressed format.
Partial — (Default). Captures all properties of all objects
in the application’s active window/dialog box/Web page in
the Active Screen of the first step performed in an
application’s window, plus all properties of the recorded
object in subsequent steps in the same window. This level
saves Web pages after any dynamic changes and saves Active
Screen files in a compressed format.
Minimum — Captures properties only for the recorded object
and its parent in the Active Screen of each step. This
level saves the original source HTML of all Web pages
(prior to dynamic changes) and saves Active Screen files in
a compressed format.
None — Disables capturing of Active Screen files for all
applications and Web pages.
| Is This Answer Correct ? | 1 Yes | 0 No |
Can any one explain me what is the procedure to connect the remote desk by using QTP 9.2 ?
What is the difference between qtp and selenium?
How to find if given number is prime or not
How should i find out whether the cursor is moving horizantally. when tabbing continuously
What is throw object?
HOW TO AUTOMATE CAPCHA IMAGES while creating Gmail account
I had created the new virtual objects for web application buttons. how to add those virtual objects into object repository. Previously i had used Gui map in winrunner for capturing virtual objects for web application. Please help me regarding this. need your answer quickly
what is runmodes in QTP
How we can add actions in the test using QTP?
Count the number of radio buttons and randomly select one.
UFT 12.02 which ALM version will support
how to get childobject from .net application. i tried but its showing child object count zero. but window has child objects.the following script i written... pls help me how to get. set parent=SwfWindow("winodw name") CheckObjectDescription parent, SwfButton Public Function CheckObjectDescription(parent, oDesc) Set oDesc = Description.Create() oDesc("micClass:").Value ="Swfbutton" Set children = parent.ChildObjects(oDesc) cntObj=children.count msgbox(cntObj) End function