What is the condition or scenario that leads the use of object
spy in qtp? (while recording we can get all the properties)
then wat leads to use this?
Answers were Sorted based on User's Feedback
Answer / avisek misra
Object spy is of great use when writing Descriptive
programming. It heklps you to find the exact properties
with which you would like to identify an object.
Moreover it is also of use to sometimes find out the exact
changes in the properties of an object when a script fails.
Hoipe this helps.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / anusha
It will give both Test-object and run-time object
properties.
| Is This Answer Correct ? | 3 Yes | 0 No |
what is the another name for blackbox testing?
Can you list some technologies that support qtp?
When I click on a link in web page.Link should open in new window.can anyone please let me know the script for this ---Koti
How to add a runtime parameter to a data sheet?
Explain the concept of object repository and how QTP recognizes objects?
how to write script in qtp(vbscript)..i mean with out application deployed..and how to call script1 into script2?
I recorded a Web App with a Oracle backend using QTP 9.5 and for some reason the scripts don't play back> What am I missing at this point. I recorded the same Apps under Sybase and they work great. This is Oracle 10g. Why won't my scripts play back.
If we write a script in the expert view how are the objects created in the object repository? to be clear i will explain my problem first i have recorded the mercurytours application by providing the link www.mercurytours.com and all the objects are stored in the object repository ok this is fine. but i have copied the script generated in the above processes and pasted in a new test and tried to run that script but as the objects were not stored in the object repository it showed an error (The "Welcome: Mercury Tours" object was not found in the Object Repository. Check the Object Repository to confirm that the object exists or to find the correct name for the object).so how can i overcome that error
What is expert view in qtp?
how to retrieve the column headers in database using vbscript statement in QTP
Suppose you are using shared objects repository in your test and you want to split your present action? At that time shared object repository is single or it’s also splits?
Hi I am new to QTP. we are planning to implement automation for the application. I am trying to execute the following script: Set ExcelObj=CreateObject ("Excel.Application") ExcelObj.WorkBooks.Add Set NewSheet=ExcelObj.Sheets.Item(1) NewSheet.Name="Order" ExcelObj.Cells(1, 1).Value = "Name" ExcelObj.Cells(1, 2).Value = "Ordernum" ExcelObj.Cells(2, 1).Value = "nam" ExcelObj.Cells(2, 2).Value = "21" ExcelObj.ActiveWorkbook.SaveAs "c:\test1.xls" ExcelObj.Quit Set ExcelObj = Nothing in the above script for the line(ExcelObj.Cells(2, 2).Value = "21") it is inserting the value 21 successfully.this is fine But if i want to insert a variable instead of the constant value then what should be the modification in the script. For example: If user retrives a value throug "GetRoProperty" and wants to insert the value into then how the script changes?