How can we call Winrunner functions from QTP?
Answer / shreyakadiyam
Select position in QTP > Insert Menu > call to Win
runner >Test > Browse the path of test > specify
parameters if required > say yes/No to run winrunner
minimized >Say yes/No to close winrunner after running the
test > Click ok
| Is This Answer Correct ? | 1 Yes | 0 No |
How can we parameterize our test, values in flat file. Ex:- Values in notepad, with that values i want to parameterize the test.
How to handle dynamic objects in QTP?
anyone can explain about "Hybrid framework" in QTP
Does quicktest professional (qtp) is unicode compatible?
Anybody can tell me what are the common roles and responsibilites of a Automation Test engineer
how to retrieve the value from data table to the script and using the value to be displayed in message box. an also retrieve the value of the output value during runtime to the script or separating and using that value in the script.
When The Low Level Recording is Used in QTP
I am Using QTP 9.1 version. I have created a Shared Object Repository. The size of Shared Object REpository is 9 MB. In my system i am able to execute the script very flexibly and it is very fast. But if i copy the same code into other system with the same configuration, it is executing very slowly(i.e dam slow). It is not happening in all machines it is in only some machines. Can please any one give th esolution. It is high priority to me as i need to give demo to client on their machines.
what is the diffrence bw qtp architectute and qtp framework?
how can we test the Triggers, Cursors, Indexes while doing Database testing in DTP??
How does qtp recognize objects in aut?
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?