Dear Friends,
I having total 3+year experience in manual testing
including automation testing QTP, if i am attending any
interview what kind of question will i get? please help me
out
Answer / Shalabh Bhatia
In an interview for a position related to QTP automation testing, you may be asked questions about your experience with the tool, your understanding of test automation principles, your problem-solving skills, and your ability to write efficient and maintainable scripts. You should also expect questions about specific projects where you have used QTP and your approach to manual testing.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to do excception handling ( error handling ) in QTP
6 Answers Institute for Medical Education,
How do u write script in qtp? where do u write?
Other than using import sheet statement for importing the data from excel sheet, is there any other method that can be used?
What is the main difference between desriptive programming and generic functions
In our application (Web based application)we will get a pdf file and we have check a particular text in that pdf. Can any one tell how to check text in a pdf file. In the same pdf file it generating some links and I have to click that links. QTP unable recognizing that links, even id did record and playback qtp does not generating any script. Can any one help me….?
how to fetch the values from grid? & qtp recogniges that grid as a webelement? what u do?
Find the 'String' from excel sheet and save to another sheet.But we don't know the string column number and row number?
What are the drawbacks of QTP?
how to read log file using QTP??
PLZ EXPLAIN HOW TO LAUNCHING QTP IN TEST DIRECTOR? Is it possible or not? If No Why we r using qtp Td Combination? plz explain briefly? What is the purpose of TD With QTP?
I Selected for TCS-Chennai(Contract to hire) position plz suggest me whether i have to join or not
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?