What are objects? how do you select the unknow object?
Answers were Sorted based on User's Feedback
Answer / tvs ramakrishna chowdary
by treating unknown objects as virtual objects we can solve
the problem
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / priyadharshini
some times objects are not visible that time we can
identify by x y coordinates
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sai
In QTP we are considering each and every field is one Object
here we are working on the properties of an object but not
on Objects.
If any unknown object is there means we don't know the
properties of that object. In Recording we can Identify the
object by using Low Level Recording.
Next one is virtual Mapping
| Is This Answer Correct ? | 0 Yes | 0 No |
Will QTP Support Visual Foxpro Applications? If yes please tell me whether I need to install any additional addins for that?
OPening of notedpad in QTP to write and execute the coding?
Difference between image checkpoint and bitmap checkpoint
What is accessibility check point?
Could some one explain me how to create folder on the desktop from QTP?? This is an interview question
You have a WebTable in Web application. When you Record a Scenario using QTP, WebTable didn't recognized and also Repository is not having Webtable information. In this case How to find RowCount and Coloumn Count?
How many add-ins comes by default with quicktest professional?
i have doubt suppose iam purly working in QTP, when i will work on sql and performence testing? pls any one clarify doubt?
What are the recording modes and executing modes avialble in QTP?
How you calling actions in qtp?
What are the file extensions for per-action, shared object repository files and what is the extension for library files?
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