what is the smart identification techniqu?what r the
different mechanisums used in it?
Answer Posted / 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 |
Post New Answer View All Answers
I am Facing Issues with learing datepicker 1)when i first learn datepicker as current system date . 2)if i wanna runtime datepicker value it gives error
When you open QTP, how many sheets you can see?
How to perform cross platform testing and cross browser testing using qtp? Can you explain giving some example?
what is supply chain management?
Give me some real time point of way where exactly we can conduct audits?
What are the two types of repositories available, explain them?
What do you mean by checkpoints in qtp?
Explain calling sub procedure.
What is Unicode Compatibility?
Discuss quicktest professional (qtp) environment?
can test automation improve test effectiveness?
how to use the QTP choose the data from oracle? e.g. i input the identity card NO. this will be add new record in the database ,and now i want get this record's prime key.
Have you used xml check point in your project? How?
What is action?
How can we retrieve the Bug Ids which are open&Reopen in status through QTP scrit?Please find the script which i tried... Dim objBugFactory, objBug Dim BugId Set TDConnection = QCUtil.TDConnection Set objBug = TDConnection.BugFactory If QCUtil.IsConnected then Reporter.ReportEvent 0, "Connected", "Connected to server: " + QCUtil.TDConnection.ServerName + chr (13) +"Project: " + QCUtil.TDConnection.ProjectName + chr (13) + "Domain: " + QCUtil.TDConnection.DomainName Reporter.ReportEvent 0, "Current time on server is","==>" & TDConnection.ServerTime Else Reporter.ReportEvent 1, "Not connected", "Not connected to Quality Center" End If If mybug.Status="Open" Then BugId=mybug.DefectId MsgBox BugId End If 'OR**********************************--------------------- -----********************************** If Bug_Fields("BG_STATUS").Value ="Open" Or "Re Open"Then BugId=Bug_Fields("BG_BUG_ID").Value MsgBox BugId End If