what are the drawbacks for record and payback in qtp
Answers were Sorted based on User's Feedback
Answer / uday kumar_anem
1. If the objects in the application are dynamic, then
record and playback is not useful.
2. we cannot insert conditional and loop statements if it
is only record and playback.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / shyam.meghansh
Each and every time you can’t record the application and
run it.
Once if u have recorded them u will not able to replay it
properly, some times u may get problems with the time of
execution, some the object is not enabled etc etc….
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / aiswaryan
1)If you are recording large apllication then QTP need to
store more number of objects in object repository. It will
make the run session very slow. since QTP has to to search
for the particular object from a larger one.
2) you cannot enhance your script in record mode.
| Is This Answer Correct ? | 1 Yes | 1 No |
Which scripting language used by QTP?
hi all, I have installed QTP successfully on windows vista. I am able to record and run on windows applications, but facing problem with web applications. While recording, I am able to open the web application, but when I click on any object or give login name and password, the events are not getting recorded in QTP. Could anyone solve the problem. Any settings to be done for web applications other than selecting web-addin? Waiting for replies. Thanks in advance.
How can i see test results in excel sheet ? test data not present in data table.
I have java based application on my computer. Can I install QTP on it? What are system requirements for installing QTP?
How do you use the parameters.input parameters and out put parameters.
how to parameterise a test with data base table or excel sheet?
What is the basic concept of quicktest professional?
What is the quicktest professional (qtp) testing process?
If already everything is tested using White-Box testing, then what is the need of using Black box testing?
What is expert view and keyword view?
Explain getroproperty and gettoproperty & settoproperty?
While writing script using For Next Statement in QTP, I try defining the variable in Lib File I am getting syntax error whereas if I use the variable in script file, the script works fine. Can anyone help me in finding the reason behind this?. E:g Dim intStartRow (Define in Lib File----- say abc.vbs) Dim intRow (If I define this variable in Lib file I am getting Syntax error where as if I define in the script file ---- say xyz.mts the script works fine) IntStartRow=2 For intRow = intStartRow to xlWrksht.UsedRange.Rows.Count ‘Some Code here Next