if Object repository contain x and y properties. we do not
know whether they are mandatory or assistive properties.
While executing the script qtp will use both the properties
or only sufficient properties to identify the object.
It means it use OR (or) AND
Answer Posted / vishnu
All the defined properties will be checked to identify
the object uniquely.
eg: html id AND html tag AND and Class...etc.
So, AND is the answer.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to export quicktest professional results to an .xls file?
How can we conduct U-I Testing by using QTP??????
How to modify object property in qtp ?
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
distinguish between old version and new version QTP features.
What is the use of ordinal identifier in qtp?
What is qtp window?
What are the benefits of qtp?
what is error and fault in terms of software quality?
what function you write to do database testing with the help of qtp?
What are the various automation frameworks available in qtp?
Is any limitation to xml checkpoints?
How does qtp identify objects in the application?
What is accessibility check point?
i have an external excel datasheet where it only contains 3 rows. after qtp executed the code to import the datasheet, the datatable getrowcount method now gives me a different value, lets say 60,000+ instead of only 3. i did not have any values starting from row 4 of my excel file. why is this happening? this also results to the qtp report to load for a very long time.