any body can you help me what is the script to automate an
comand promt
No Answer is Posted For this Question
Be the First to Post Answer
what is error and fault in terms of software quality?
If requirments changed then how we can teach the QTP this is the new requirment
How can you delete the results file (XML)
How do you use the parameters.input parameters and out put parameters.
How you are developing the script? Using record and play back or manual?
Hi,iam new to automation and i have 1 year experience in manual testing.I have a little bit idea about QTP9.0 .But i have no idea about script writing using VB.Please help to learn script writing.
Inserting a Call to Action is not Importing all columns in Datatable of globalsheet. Why?
How can i check all the button that are enabled in a widnows based application ? What script should i write for this ?
Hi, how can we retrieve a specific value from Excel Sheet (Not datatable. for externel file).i mean to say from .xls file. and also tell me from xml file and .doc file. and how can u parameterize ur script from .xls file.(Not data table).
Which MS Excel formulas are possible to use in the DataTable? I am searching a formula for searching a field in the datatable
write string reverse prog using vb script with out using string reverse statement();
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?