1)what is the quality process in QTP?
2)how to add the .tsr file in qtp through scripting?
Process in QTP:
Generating and Enchancing the script
Debugging the script
Executing the script
Analyzing the script
Reporting
2. We can do it in two way using scripting
a)Using RepositoriesCollection.Add "Path of the .tsr file"
b)using AOM
set qtapp=CreateObject("QuickTest.APPlicaiton")
set qttest=qtapp.Test.Action[Action Name]
set or=qttest.ObjectRepositories
or.add "path of the .tsr file"
set qttest=Nothing
set qtapp=Nothing
regards,
mahi.kotike@gmail.com
| Is This Answer Correct ? | 2 Yes | 0 No |
What is action split and the purpose of using this in qtp?
Older version QTP is 8.2 and New version QTP is 9.2. My question is, Why it is QTP 9.2, why not 8.3,8.4 .... why it is not something ?
Hi guys, can anyone explain me whats the method for reporting the QTP test results to teamlead or non-QA member (developer/PM)? Thanks in Advance!!!!!
Difference between copy to action and call to action?
Explain how you can find the absolute value of the number in qtp?
How to test login module with different username and password by using data driven testing in QTP?
i this is balaji from chennai i have 4 yrs exp in testing and my qualification is bsc computers i completed in correspondace in which companiies accept the correspondace plz let me know
Hai anyone please "Explain about Framework in QTP?"
can objects recogonised without repository?
Give me some scripts for 1). checking webpage links (counting links,opening web pages,counting child elements)
hello everyone, can anybody please tell me what are the different recording modes of QTP, and where these recording modes are present in QTP 9.2. Thanks in advance, Gaytri
I have 2 Environment variable which holds int. I called into my test and addedup. but output is concatenating the values instead of Sum. Ex. Envi("a")= 10, Envi("b") = 20, c= Envi("a")+ Envi("b"). msgbox c ( Ans.1020). How to overcome this pblm?