HOW MANY WAYS ARE THERE TO CPY TEST IN TEST LAB
Answers were Sorted based on User's Feedback
How to give Table check points?
what is the difference btn risks & Therads in the Test plan documentation?
Can we test GUI of the application using QTP.? How.?If possible briefly explain process.?
Whenever we r keeping mouse pointer under the image we r getting image name. In qtp how can we do this thing.weather that name is coming or not?
How we can add objects to the object repository during the running?is it possible or not?explain
Synchronozation types in QTP
what are the areas that cannot be tested using an automated tool? list a few
what are the different kinds of frameworks in automation?
What is 'sleep' in sync point?
How to take screenshots in qtp?
What is the basic concept of qtp?
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?