what is qtp automation framework, what is the purpose of the
framework and which folders included in this framework pls
tell me with brief description
Answers were Sorted based on User's Feedback
Answer / bhargavi
QTP Automation frame work is a process of doing automation.
here you need to create some folders and that is called
folder structure. the structure is as below
create an automation folder in one of the drives. and then
create the below folders in that.
Data,Library,scripts,recovery,results
we just store the input data in excel sheet and save it in
Data folder.
and the scripts in scripts folder
user defined functions in library folder
if u have an recoveries just save the .qrs files in
recovery folder
and if u want to store the results just export it to HTML
file and store it into results folder
thats all
for further queries please feeel free to ask
thanks
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / raju
hi Bhargavi,
Could you please elaborate about frame work I want more
details the same. what are the simulator and drive files.
what is the need of creating the drive and simulator files.
| Is This Answer Correct ? | 1 Yes | 0 No |
What are the different types of functions available in qtp and explain ?
How do you learn the object in QTP?
I am a new tester that needs to create an automatic script involving security questions. On a webpage I need to select a security question(which are random) from a drop down menu, and then input the answer as the last word from the security question. I have the script set-up to automatically select the first security question from the drop down. The problem I am having is trying to insert the security answer. How do I insert the security answer based on the selection from the security question?
How to get line numbers in your editor in expert view?
how much space occupies in object respository by default?
What is difference between Recording time object identification and Run time (Execution) time.
Explain the terms test and business component?
i want to handle all the unwanted pop up through QTP i done that with recovery scenario but it need some title of pop up but i want that it should handle all the pop up even i don't give the title of that pop up in recovery scenario is there any general way to handle all the pop up please help
what r the executing modes in QTP
how to identify an object which is not in the object repository identification can be done using descriptive programming.
What is Unicode Compatibility?
Hi Friends, How to trap an error message on Web page through QTP. Example:- When I put wrong user id or Password on a web page, I get the error message. So when I add the error object in Reposatory, every time it shows as Login Failed Object exist, eventhough using corret login details. And if I do the same without adding the object it shows as object not found. This might be because while recording QTP takes every new page as _1 _2 _3 and so on. as below. Browser("XXXXX").Page("XXXXX_1"). >>login Browser("XXXXX").Page("XXXXX_2"). >>Inbox Browser("XXXXX").Page("XXXXX_3"). >>Sent Items I used below code. Browser("XXXXX").Page("XXXXX").WebEdit("firstname").Set strFN Browser("XXXXX").Page("XXXXX").WebEdit("lastname").Set strLN Browser("XXXXX").Page("XXXXX").WebEdit("userid").Set strUserID Browser("XXXXX").Page("XXXXX").WebEdit("password").Set strPass Browser("XXXXX").Page("XXXXX").WebButton("Login >").Click If Browser("XXXXX").Page("XXXXX_2").Image ("msg_icon_error").Exist 5 Then Reporter.ReportEvent micFail, "XXXXX", "Login Failed!" ExitRun (It shows login failed ever after login is passed. Else Reporter.ReportEvent micPass, "XXXXX", "Login Successful!" End If Please find out a way for me here, and provide me with the correct code. Thanks in Advance.