How the exception handling can be done using quicktest professional (qtp)?
No Answer is Posted For this Question
Be the First to Post Answer
How can you close the second opened browser?
Explain sub procedure of vbscript.
anyone can explain Diff B/w Actions and Functions
Whats the realtime QTP testing process
How can we get the result from WindowsXP Command Window? (e.g. After we input 'ipconfig' in command window, how QTP get the result?)
Is it possible for QTP to capture the objects in word document.If so please give me the code.Thank you.
In my application there is a billing thru credit card. how to validate the credit card details(min balance,credit card no,card holder name).if these details are valid then only that booking will be done.how to validate these details thru automation or manual?
I want to open a Google page without recording a test and i do not want to use system.Util.run command as well how do i do this?
How to load a object repository in QTP during runtime?
2 Answers BNP Paribas, Virtusa,
What is test object model in quicktest professional?
What is quicktest professional (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?