Explain about Standard output value, Text output value,
database o/p value, Xml O/p value, Xm o/p Value
Answer / kathir
Output value is a step in which one or values captured at a
specific point in your test or component and stored for
duration of the run session. These values can be used later
in the different point in application.
In generally, output of application shows different values
and it is not based on action in the current page/action in
the application then the word output value is coming in
QTP. And it has four types, these are given below.(These
are usage in application at different places/purposes)
standard o/p value: In web aplication, link page shows
differently based on the user actions in the previous page.
Text o/p value: Text ouput value may behave differntly
based on using the diferent environments in window based
application. It is recommanded to retrieve the text from
the application window by using standard output value to
the value of object text property.
Database o/p value: database output value to the output the
value of contents of database cells based on the result of
the query that you define on a database.
xml o/p value: xml output values to output the values of
xml elements and attributes of xml documents can be used.
Is This Answer Correct ? | 4 Yes | 0 No |
what is the default ordinal identifier.what are the send keys in qTP.
can any one make me confirm about a real time employee with better experience in QTP who is providing QTP course individually in Bangalore???
requirement is for combo box your expected value is str= "Denver.Frankfurt.London.Los Angeles.Paris.Portland.San Francisco.Seattle.Sydney.Zurich" ar = Window("Flight Reservation").WinComboBox("Fly From:").GetContent your actual value is : that shows data in combo box how can u test the both data is correct or not by using split function
what is life cycle of automation testing ?
Explain features of the latest version of qtp/ uft 12.1?
What is the extension of 'Log file' in QTP
What is Description Object?
What is the difference in testing a client-server application and a web application?
how to generate numbers in between to numbers suppose numbers in between 500 to 1000 in sequencies using vbscript
How to Synchronize the Browser at Field level? For example if you put Browser.sync(), it will wait upto for that Browser sync only. But It should wait upto total Browser get uploaded with all fields. Note : We don't know Which fields will come in that Browser. Means without knowing field names.
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
Why is action split used by qtp?