When a requirement is given to u to automate , What is ur
basic approach ?
Answer Posted / sreekanth chilam
1.Intially have Clear understanding of the functionality of
the requirement.
2.then check it is Feasible to automate this requirement or
not.
3.If it is Feasible,know in which language application is
developed,then ensure that compatible add-ins are installed
for Testing the application.
4.check whether requirement needs one time testing or long
term(Need to be tested multiple times.
5.Then start Test Script Development by using QTP
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what is key word driven frame work ? why it is called like that ? what is the diference between keyword driven and data driven frame work ?
How can you identify the browser and its information using the qtp script?
i'm using the qtp to test to vb appliction,i wanted to get the new application's title.i didn't want to use the winAPI to get it ,i 'd like to know whether a QTP function can do it. Eg: SystemUtil.Run "C:\Program Files\.....","","","" 'run an application, and misure the application is activating,then how to get the hwn wihtout using windowns api
i am trying to automate yatra.com,in that site, when i go to automate the Leaving from field showing as a WEBEDIT, but when i enter 1 or 2 char, it displaying dropdownlist, i try to use keyboard automation to select the item from that list but it is not possible, can anybody help he. Thans for posting the Answer
What are the methods used in UFT to handle exceptions or run-time errors?
What are the types of data tables in qtp?
What are the different recording modes and how do they work?
Explain the keyword driven framework for the window based application complete creation of library files,env file,test data,recovery file,excel file ,repository etc and as a test engineer how is ur approach
Can you write a script to check if the folder exists or not?
How can you pass value one action to another action?
How to use Environment parameterization? Explain with an example.
How did you use regular expressions in QTP and also in WR?
1. wat are the main diff b/w QTP 8.0 AND QTP 9.2 ( not user interface) 2. wat is the meaning of Keyword in keyword driven frame work? 3. how u will handle the unknown errors while exucution. (not recovery scenario)
What is the use of defining a newobject in the object repository "Define New TestOject". How to use this further. If we define new testobject, how can it recognizes the objects properties of any application.
I AM TRYING PORT CODE FROM WINRUNNER TO QTP AND DON'T KNOW TO HOW TO CHECK THE ERRORS. IN WINRUNNER FUNCTION RETURNS EIGHER 0 OR -1 AGAINST WHICH RESULT CAN BE MADE PASS OR FAIL BUT IN QTP I DON'T SEE FUNCTIONS RETURNING ANY VALUE. APPRECIATE IF ANYONE COULD HELP ME CONVERTING FOLLWOING WINRUNNER CODE TO QTP. set_window("Customer Service"); rc = web_obj_get_text("Summary","#2","#4",ssn,""," ",1); if (rc != E_OK) { report_msg("[GetSubscriberSummary] Could Not get subscriber SSN; rc = "&rc); myRC = rc; } else { ssn = StripBlank(ssn); if (DEBUG) report_msg ("[GetSubscriberSummary] SSN: "&ssn); }