what is the smart identification techniqu?what r the
different mechanisums used in it?
Answers were Sorted based on User's Feedback
Answer / seenai
Smart Identification is the process of identifying the
object property uniquely, If not found with Mandatory and
Assistive Properties
we use 2 types of mechanisms in it
1. Base filter properties
2. Optional filter properties
| Is This Answer Correct ? | 8 Yes | 0 No |
whenever the qtp fails to identify the object by using the
properties present in the object repository then the special
mechanism provided by the qtp to identify the object with
filtration process is known as smart identification.
explanation:
first of all it will use the complete information present in
the object repository both mandatory properties and
assistive properties.(not ordinal identifier)
if at all it fails to identify the object then it will use
all the base filter properties and will try to identify the
object.
if at all more than one objects are matched with that
properties, then it will consider those objects and filter
the remaining objects.
then it will take the first optional filter property and
will try to match those considered objects.
if more than one objects are matched consider those objects
and filter the remaining objects.
then it will take the 2nd optional filter property and
continuous the same process till it finds exactly one match.
| Is This Answer Correct ? | 6 Yes | 0 No |
how can i pass a "cript"as a parameter in to a function
If u prepare bug report in Excel sheet . Is it possible to send thrw Test director? how it is?
What is your role and responsibilities in QTP with your current organization?
what is defination of system testing?
3 Answers CodeArrow, Infosys, Omax,
How many tabs are available to view your test in a test pane and what are they?
What are the different attributes used with regular expression?
Hi,Sudhanandareddy plz forword framework and ppts for QTP to me. This is my mail id: ranjith_99reddy@yahoo.co.in (your contact number also)
If there are 10 notepads opened on desktop. how can we close a particular 2nd notepad using script
What is the syntax to call one action in another?
Tell me one scenario, the complex functionality you have automated in your project?
Why you are Using Descriptive programming instead of Object Repository?
I AM TRYING PORT CODE FROM WINRUNNER TO QTP AND DON'T KNOW TO HOW TO CHECK THE ERRORS. IN WINRUNNER FUNCTION RETURNS EIGHER 0 OR -1 AGAINST WHICH RESULT CAN BE MADE PASS OR FAIL BUT IN QTP I DON'T SEE FUNCTIONS RETURNING ANY VALUE. APPRECIATE IF ANYONE COULD HELP ME CONVERTING FOLLWOING WINRUNNER CODE TO QTP. set_window("Customer Service"); rc = web_obj_get_text("Summary","#2","#4",ssn,""," ",1); if (rc != E_OK) { report_msg("[GetSubscriberSummary] Could Not get subscriber SSN; rc = "&rc); myRC = rc; } else { ssn = StripBlank(ssn); if (DEBUG) report_msg ("[GetSubscriberSummary] SSN: "&ssn); }