what is qtp automation frame work,what is the use of that
frame work?
Answer Posted / vikrant
A Test Automation Framework is a set of assumptions, concepts and tools that provide support for automated software testing. The main advantage of such a framework is the low cost for maintenance. ...
it can define as:
-Defines a set of guideline for all phases of test automation
-best practice followed to support automation
-can be visualized as a wrapper around some complete internal architecture to make it easy for the end user
-set of standards used for implementation
-break the testing activities and inter-relate them to work as a whole
-idea is to get efficient testing and achieve all the goals of automation
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
"What are the common constrains that we need to consider when we prepare testcases for ASP application". Thanks in Advance...
How to use setroproperty?
Where we can use the analog mode and where we can use the low – level mode?
What r the different filters in defect in quality center
How you can replace string in qtp?
what is impact analysis on regression testing?
What is an expert view and keyword view?
How to connect the remote desktop using QTP 9.2 explain the method or procedure?
How many ways we can parameterize data in quicktest professional (qtp)?
how to fetch the values from grid? & qtp recogniges that grid as a webelement? what u do?
What is the registration process and examination fees?
what is ODC and GDC?
How to add verification steps to tests?
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); }
Is it possible to refer the same object for referring more than one object that are of different class using the descriptive programming approach? Suppose my code is 'To create the object named as obj Set obj=Description.Create() 'To define the values obj("title").value="IE" obj("type").value="text" obj("html tag").value="INPUT" 'To set the value Browser("IE").Page("Yahoo").WebEdit(obj).Set "xyz" Can I refer the "obj" object for the three objects like Browser,page and webedit objects? If so how?