What are "Ordinal Identifiers" and where it is used in QTP.
AS FAR AS i KNOW, its is used to identify the object. but i
want clarity regarding this.

Answer Posted / nalini

Ordinal Identifiers are Location, Index for both windows,
web applications. For Web only, Creationtime has been added
apart from these two.

If QTP is unable to identify an object with recorded
properties(Mandatory & Assistive properties), then it uses
recorded properties and Ordinal Identifier to identify the
object.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of object repositories? Which one is you are using?

626


What is checkpoints for quicktest professional (qtp)?

572


What are the methods used in UFT to handle exceptions or run-time errors?

640


How can you pass value one action to another action?

546


Can any body please tell me the steps of keyword driven frame work in qtp. My mail is saswat445@gmail.com please send some materials on keyword driven testing in qtp. thanks a lot...

1783






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

2565


How does qtp identify objects in the application?

579


What is test object?

691


What is data driver in qtp?

568


How to handle Java tree in QTP?

740


Hi frnds, does anybody know if there is anything called "thin point" or something in qtp? thanks in advance.

1548


What are the factors on which script execution time is dependent?

603


1.How do u prepare the test suits in QC? 2.How do u convert requirements to test plan in QC?

1494


I used the below code to open QTP through VBscript?But i can unable to Invoke QTP...PLZ help me with the correct code to invoke QTP through VBS with description of the code aswell. Dim qtApp 'As QuickTest.Application 'Declare the Application object variable Dim qtTest 'As QuickTest.Test 'Declare a Test object variable Dim qtResultsOpt 'Declare a Run Results Options object variable Set qtApp = CreateObject("QuickTest.Application") 'Create the Application object qtApp.Launch 'Start QuickTest qtApp.Visible = False 'Make the QuickTest application visible qtApp.Open "C:\form", True 'Open the test in read-only mode 'set run settings for the test Set qtTest = qtApp.Test qtTest.Run 'Run the test 'WScript.StdOut.Write "Status is: " & qtTest.LastRunResults.Status 'Check the results of the test run qtTest.Close 'Close the test qtApp.quit 'Close QuickTest Pro Set qtResultsOpt = Nothing 'Release the Run Results Options object Set qtTest = Nothing 'Release the Test object Set qtApp = Nothing 'Release the Application object

2416


what is the difference between the modular framework and datadriven frame work

1906